![JAR search and dependency download from the Maven repository](/logo.png)
net.plsar.model.LineComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plsar Show documentation
Show all versions of plsar Show documentation
PLSA.R is an Open Source Java Server + API for high demand, low latency requirements. There are no static references, no file reads, access to static fields per request. Everything is either cached and or instantiated on the fly. PLSA.R runs via one command so there are no .war files to deploy, no additional plugins to install it is a simple yet powerful alternative to container deployment environments. PLSA.R even boasts a little dependency injection for data logic. www.plsar.net
The newest version!
package net.plsar.model;
public class LineComponent {
boolean iterated;
String activeField;
String objectField;
String lineElement;
public boolean isIterated() {
return iterated;
}
public void setIterated(boolean iterated) {
this.iterated = iterated;
}
public String getActiveField() {
return activeField;
}
public void setActiveField(String activeField) {
this.activeField = activeField;
}
public String getObjectField() {
return objectField;
}
public void setObjectField(String objectField) {
this.objectField = objectField;
}
public String getLineElement() {
return lineElement;
}
public void setLineElement(String lineElement) {
this.lineElement = lineElement;
}
public String getCompleteLineFunction(){
return OPEN + this.lineElement + END_FUNCTION;
}
public String getCompleteLineElement(){
return OPEN + this.lineElement.replaceAll("\\.", "\\.") + END;
}
static final String OPEN = "\\$\\{";
static final String END = "\\}";
static final String END_FUNCTION = "\\(\\a-zA-Z+)}";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy