com.github.ejahns.model.Background Maven / Gradle / Ivy
The newest version!
package com.github.ejahns.model;
import java.util.List;
import com.github.ejahns.model.interfaces.haselement.HasSteps;
import com.github.ejahns.model.interfaces.hastoken.HasDescription;
import com.github.ejahns.model.interfaces.hastoken.HasLineNumber;
import com.github.ejahns.model.interfaces.hastoken.HasName;
public class Background implements HasLineNumber, HasName, HasDescription, HasSteps {
private int line;
private String name;
private List description;
private List steps;
@Override
public int getLine() {
return line;
}
@Override
public void setLine(int line) {
this.line = line;
}
@Override
public String getName() {
return name;
}
@Override
public void setName(String name) {
this.name = name;
}
@Override
public List getDescription() {
return description;
}
@Override
public void setDescription(List description) {
this.description = description;
}
@Override
public List getSteps() {
return steps;
}
@Override
public void setSteps(List steps) {
this.steps = steps;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy