![JAR search and dependency download from the Maven repository](/logo.png)
net.anotheria.asg.generator.util.IncludeDocumentsBean Maven / Gradle / Ivy
package net.anotheria.asg.generator.util;
/**
* Bean of included document.
*
* @author another
* @version $Id: $Id
*/
public class IncludeDocumentsBean {
/**
* Document name.
*/
private String documentName;
/**
* Line, where document was included.
*/
private int insertLine;
/**
* Constructor for IncludeDocumentsBean.
*
* @param documentName a {@link java.lang.String} object.
* @param insertLine a int.
*/
public IncludeDocumentsBean(String documentName, int insertLine) {
this.documentName = documentName;
this.insertLine = insertLine;
}
/**
* Getter for the field documentName
.
*
* @return a {@link java.lang.String} object.
*/
public String getDocumentName() {
return documentName;
}
/**
* Setter for the field documentName
.
*
* @param documentName a {@link java.lang.String} object.
*/
public void setDocumentName(String documentName) {
this.documentName = documentName;
}
/**
* Getter for the field insertLine
.
*
* @return a int.
*/
public int getInsertLine() {
return insertLine;
}
/**
* Setter for the field insertLine
.
*
* @param insertLine a int.
*/
public void setInsertLine(int insertLine) {
this.insertLine = insertLine;
}
/** {@inheritDoc} */
@Override
public String toString() {
return "IncludeDocumentsBean{" +
"documentName='" + documentName + '\'' +
", insertLine=" + insertLine +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy