eu.rssw.rcode.ProcedureCompilationUnit Maven / Gradle / Ivy
/**
* Copyright 2011-2023 Riverside Software
*
* 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 eu.rssw.rcode;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "procedure", namespace = "")
public class ProcedureCompilationUnit {
@XmlElement(name = "parameter")
public List parameters = new ArrayList<>();
@XmlElement(name = "comment")
public List procComment = new ArrayList<>();
@XmlElement(name = "mainProcedure")
public Procedure mainProcedure;
@XmlElement(name = "procedure")
public List procedures = new ArrayList<>();
@XmlElement(name = "function")
public List functions = new ArrayList<>();
@XmlElement(name = "using")
public List usings = new ArrayList<>();
@XmlElement(name = "event")
public List events = new ArrayList<>();
@XmlElement(name = "temp-table")
public List tts = new ArrayList<>();
@XmlElement(name = "dataset")
public List dss = new ArrayList<>();
public void toXML(File out) throws JAXBException, IOException {
try (FileOutputStream fos = new FileOutputStream(out)) {
JAXBContext context = JAXBContext.newInstance(AccessModifier.class,
ClassCompilationUnit.class, Constructor.class, Dataset.class, EnumMember.class,
Event.class, Function.class, GetSetModifier.class, Method.class,
Parameter.class, ParameterMode.class, Procedure.class,
ProcedureCompilationUnit.class, Property.class, TableField.class,
TableIndex.class, TempTable.class, Using.class, UsingType.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
marshaller.marshal(this, fos);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy