/* * @(#)AcscModelParser.java * * Copyright (C) 2008 www.interpss.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * @Author Mike Zhou * @Version 1.0 * @Date 08/11/2010 * * Revision History * ================ * */ package org.ieee.odm.model.acsc; import org.ieee.odm.schema.LineShortCircuitXmlType; import org.ieee.odm.schema.PSXfrShortCircuitXmlType; import org.ieee.odm.schema.ShortCircuitBusXmlType; import org.ieee.odm.schema.ShortCircuitNetXmlType; import org.ieee.odm.schema.XfrShortCircuitXmlType; /** * An Acsc ODM Xml parser for the IEEE DOM schema. */ public class AcscModelParser extends BaseAcscModelParser<ShortCircuitNetXmlType> { /** * Default Constructor * */ public AcscModelParser() { super(); } }