org.javabuilders.swing.mydoggy.MyDoggyToolWindowPerspective Maven / Gradle / Ivy
The newest version!
package org.javabuilders.swing.mydoggy;
/**
* MyDoggyToolWindowPerspective.
*
* @author anavarro - 6 Jan 2009
*
*/
public final class MyDoggyToolWindowPerspective
{
private String name;
private Boolean visible;
/**
* Returns the name.
*
* @return The name to return.
*/
public String getName()
{
return this.name;
}
/**
* Sets the name.
*
* @param aName The name to set.
*/
public void setName(final String aName)
{
this.name = aName;
}
/**
* Returns the visible.
*
* @return The visible to return.
*/
public Boolean isVisible()
{
return this.visible;
}
/**
* Sets the visible.
*
* @param aVisible The visible to set.
*/
public void setVisible(final Boolean aVisible)
{
this.visible = aVisible;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy