![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.gluebooster.java.booster.basic.io.Information Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gb-basic Show documentation
Show all versions of gb-basic Show documentation
Basic classes to support the development of applications. There should be as few dependencies on other frameworks as possible.
The newest version!
package net.sf.gluebooster.java.booster.basic.io;
/**
* A Testclass for the SourcePreprocessor
* @author christian.bauer
*
* @param the parent of the dialog
* @param the type of the icon
*/
public class Information
{
//#property DialogParent parent the parent of the dialog
//Generated Code (Gluebooster SourcePreprocessor)
/**
* the parent of the dialog
* The value of the property 'parent'
*/
private DialogParent parent;
/**
* The getter of the property 'parent'.
* the parent of the dialog
* @return the value of the property.
*/
public DialogParent getParent()
{
return parent;
}
/**
* The setter of the property 'parent'.
* the parent of the dialog
* @param newValue the new value of the property
*/
public void setParent(DialogParent newValue)
{
parent = newValue;
}
//End of Generated Code (Gluebooster SourcePreprocessor)
//#property String title the title of the dialog
//Generated Code (Gluebooster SourcePreprocessor)
/**
* the title of the dialog
* The value of the property 'title'
*/
private String title;
/**
* The getter of the property 'title'.
* the title of the dialog
* @return the value of the property.
*/
public String getTitle()
{
return title;
}
/**
* The setter of the property 'title'.
* the title of the dialog
* @param newValue the new value of the property
*/
public void setTitle(String newValue)
{
title = newValue;
}
//End of Generated Code (Gluebooster SourcePreprocessor)
//#property boolean flag the flag of the dialog
//Generated Code (Gluebooster SourcePreprocessor)
/**
* the flag of the dialog
* The value of the property 'flag'
*/
private boolean flag;
/**
* The getter of the property 'flag'.
* the flag of the dialog
* @return the value of the property.
*/
public boolean isFlag()
{
return flag;
}
/**
* The setter of the property 'flag'.
* the flag of the dialog
* @param newValue the new value of the property
*/
public void setFlag(boolean newValue)
{
flag = newValue;
}
//End of Generated Code (Gluebooster SourcePreprocessor)
//#property Boolean flag2 the flag2 of the dialog
//Generated Code (Gluebooster SourcePreprocessor)
/**
* the flag2 of the dialog
* The value of the property 'flag2'
*/
private Boolean flag2;
/**
* The getter of the property 'flag2'.
* the flag2 of the dialog
* @return the value of the property.
*/
public Boolean getFlag2()
{
return flag2;
}
/**
* The setter of the property 'flag2'.
* the flag2 of the dialog
* @param newValue the new value of the property
*/
public void setFlag2(Boolean newValue)
{
flag2 = newValue;
}
//End of Generated Code (Gluebooster SourcePreprocessor)
//#property int number the number of the dialog
//Generated Code (Gluebooster SourcePreprocessor)
/**
* the number of the dialog
* The value of the property 'number'
*/
private int number;
/**
* The getter of the property 'number'.
* the number of the dialog
* @return the value of the property.
*/
public int getNumber()
{
return number;
}
/**
* The setter of the property 'number'.
* the number of the dialog
* @param newValue the new value of the property
*/
public void setNumber(int newValue)
{
number = newValue;
}
//End of Generated Code (Gluebooster SourcePreprocessor)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy