DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
The Latest "Software Integration: The Intersection of APIs, Microservices, and Cloud-Based Systems" Trend Report
Get the report
  1. DZone
  2. Coding
  3. Tools
  4. NetBeans Platform Tip: BooleanStateActions

NetBeans Platform Tip: BooleanStateActions

Konstantin Chikarev user avatar by
Konstantin Chikarev
·
Jul. 06, 08 · Interview
Like (0)
Save
Tweet
Share
10.62K Views

Join the DZone community and get the full member experience.

Join For Free

if you want to have an action that changes flag state using toobar button or menu check, you can use booleanstateactions.

create changestateaction using wizard dialog with menu and toolbar buttons.

here is the generated code:

public final class changestateaction extends callablesystemaction
{

public void performaction()
{
// todo implement action body
}

public string getname()
{
return nbbundle.getmessage(changestateaction.class, "ctl_changestateaction");
}

@override
protected string iconresource()
{
return "com/antilogics/binary.png";
}

public helpctx gethelpctx()
{
return helpctx.default_help;
}

@override
protected boolean asynchronous()
{
return false;
}
}

replace callablesystemaction class with booleanstateaction, remove "performaction" and "asynchronous" methods. add following code:

    private jtogglebutton togglebutton;
private jcheckboxmenuitem menubutton;


public changestateaction()
{
// initial state value
setbooleanstate(true);

togglebutton = new jtogglebutton();
actions.connect(togglebutton, this);
menubutton = new jcheckboxmenuitem(getname());
actions.connect(menubutton, this);
}


@override
public void actionperformed(actionevent event)
{
super.actionperformed(event);
boolean state = getbooleanstate();
// do something with new state...
}


// replace toolbar button with yours
@override
public component gettoolbarpresenter()
{
return togglebutton;
}

// replace menu item with yours
@override
public jmenuitem getmenupresenter()
{
return menubutton;
}


here is the result:

that's all! enjoy

NetBeans Dialog (software)

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Application Architecture Design Principles
  • Best Navicat Alternative for Windows
  • Keep Your Application Secrets Secret
  • What Is the Temporal Dead Zone In JavaScript?

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: