io.resys.hdes.client.spi.changeset.beans.AstChangesetBean Maven / Gradle / Ivy
package io.resys.hdes.client.spi.changeset.beans;
/*-
* #%L
* wrench-assets-flow
* %%
* Copyright (C) 2016 - 2019 Copyright 2016 ReSys OÜ
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import io.resys.hdes.client.api.ast.AstChangeset;
import io.resys.hdes.client.api.ast.AstCommand;
public class AstChangesetBean implements Comparable, AstChangeset {
private int line;
private List commands = new ArrayList<>();
public AstChangesetBean(int line) {
super();
this.line = line;
}
public AstChangesetBean(int line, AstCommand command) {
super();
this.line = line;
this.commands.add(command);
}
@Override
public int getLine() {
return line;
}
@Override
public List getCommands() {
return Collections.unmodifiableList(commands);
}
public AstChangesetBean add(AstCommand command) {
commands.add(command);
return this;
}
public void setLine(int line) {
this.line = line;
}
@Override
public int compareTo(AstChangesetBean o) {
return Integer.compare(getLine(), o.getLine());
}
public String getValue() {
if(commands.isEmpty()) {
return null;
}
return commands.get(commands.size() - 1).getValue();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy