/* * Copyright 2015 JBoss, by Red Hat, Inc * * 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. */ package org.uberfire.ext.wires.bayesian.network.parser.client.parser; import java.io.Serializable; import java.util.List; import com.thoughtworks.xstream.annotations.XStreamAlias; import com.thoughtworks.xstream.annotations.XStreamImplicit; import org.jboss.errai.common.client.api.annotations.Portable; @XStreamAlias("VARIABLE") @Portable public class Variable extends VariableXml implements Serializable { private static final long serialVersionUID = -4272919361549757485L; @XStreamAlias("NAME") private String name; @XStreamImplicit(itemFieldName = "OUTCOME") private List<String> outComes; @XStreamAlias("PROPERTY") private String position; public String getName() { return name; } public void setName(String name) { this.name = name; } public List<String> getOutComes() { return outComes; } public void setOutComes(List<String> outComes) { this.outComes = outComes; } public String getPosition() { return position; } public void setPosition(String position) { this.position = position; } }