Quantcast
Channel: NetBeans Platform Feed Reader Tutorial - Stack Overflow
Viewing all articles
Browse latest Browse all 3

NetBeans Platform Feed Reader Tutorial

$
0
0

I'm am doing this Netbeans tutorial and i got stuck on this part.(https://platform.netbeans.org/tutorials/nbm-feedreader.html#three)

Here is the code I have for the class implemented:

package org.myorg.feedreader;/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */import org.openide.awt.ActionID;import org.openide.awt.ActionReference;import org.openide.awt.ActionReferences;import org.openide.windows.TopComponent;/** * * @author Kidnapinn */@TopComponent.Description(        preferredID = "FeedTopComponent",        persistenceType = TopComponent.PERSISTENCE_ALWAYS)@TopComponent.Registration(        mode = "explorer",         openAtStartup = true)@ActionID(        category = "Window",         id = "org.myorg.feedreader.FeedTopComponent")@ActionReferences({    @ActionReference(        path = "Menu/Window",         position = 0)})@TopComponent.OpenActionRegistration(        displayName = "#CTL_FeedAction")@Messages({"CTL_FeedTopComponent=Feed Window","HINT_FeedTopComponent=This is a Feed Window"})private FeedTopComponent() {    setName(Bundle.CTL_FeedTopComponent());    setToolTipText(Bundle.HINT_FeedTopComponent());}public class FeedTopComponent extends TopComponent {}

I'm a noob at Java so i don't know what i'm doing wrong.Can you help me?


Viewing all articles
Browse latest Browse all 3

Latest Images

Trending Articles





Latest Images