2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2010-2010 - DIGITEO - Clement DAVID <clement.david@scilab.org>
4 * Copyright (C) 2011-2013 - Scilab Enterprises - Clement DAVID
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
14 package org.scilab.modules.xcos.modelica.model;
16 import javax.xml.bind.annotation.XmlAccessType;
17 import javax.xml.bind.annotation.XmlAccessorType;
18 import javax.xml.bind.annotation.XmlAttribute;
19 import javax.xml.bind.annotation.XmlType;
22 * Modelica String assignation. The default value is specified to ease
26 * Java class for ModelicaValue complex type.
29 * The following schema fragment specifies the expected content contained within
33 * <complexType name="ModelicaValue">
35 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
36 * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
38 * </complexContent>
44 @XmlAccessorType(XmlAccessType.FIELD)
45 @XmlType(name = "ModelicaValue")
46 public class ModelicaValue {
49 * A non-null value is required by xml2modelica
51 @XmlAttribute(required = true)
52 protected String value = "";
55 * Gets the value of the value property.
57 * @return possible object is {@link String }
60 public String getValue() {
65 * Sets the value of the value property.
68 * allowed object is {@link String }
71 public void setValue(String value) {