![JAR search and dependency download from the Maven repository](/logo.png)
org.bridje.jfx.srcgen.model.IncludeInf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bridje-jfx-srcgen Show documentation
Show all versions of bridje-jfx-srcgen Show documentation
Source Generation for Bridje JavaFX tools and components.
The newest version!
package org.bridje.jfx.srcgen.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
/**
* Java class include information.
*/
@XmlAccessorType(XmlAccessType.FIELD)
public class IncludeInf
{
@XmlAttribute
private String fullName;
/**
* Gets the full java class name for this include.
*
* @return The full java class name for this include.
*/
public String getFullName()
{
return fullName;
}
/**
* Sets the full java class name for this include.
*
* @param fullName The full java class name for this include.
*/
public void setFullName(String fullName)
{
this.fullName = fullName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy