001/*
002 *   Entity118_XX_Unsupported  -- Unsupported Ruled Surface entity.
003 *
004 *   Copyright (C) 2013-2016, Joseph A. Huwaldt.
005 *   All rights reserved.
006 *   
007 *   This library is free software; you can redistribute it and/or
008 *   modify it under the terms of the GNU Lesser General Public
009 *   License as published by the Free Software Foundation; either
010 *   version 2.1 of the License, or (at your option) any later version.
011 *   
012 *   This library is distributed in the hope that it will be useful,
013 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
014 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
015 *   Lesser General Public License for more details.
016 *
017 *   You should have received a copy of the GNU Lesser General Public License
018 *   along with this program; if not, write to the Free Software
019 *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
020 *   Or visit:  http://www.gnu.org/licenses/lgpl.html
021 */
022package geomss.geom.reader.iges;
023
024/**
025 * <b><i>RULED SURFACE ENTITY</i></b> - This entity represents a ruled or 2-curve linearly
026 * lofted surface. This form is currently unsupported.
027 * 
028 * <p> Modified by: Joseph A. Huwaldt </p>
029 * 
030 * @author Joseph A. Huwaldt, Date: March 11, 2013
031 * @version September 13, 2016
032 */
033public class Entity118_XX_Unsupported extends Entity {
034
035    /**
036     * Default constructor.
037     *
038     * @param p  part to which this entity is contained
039     * @param de Directory Entry for this entity
040     */
041    public Entity118_XX_Unsupported(Part p, DirEntry de) {
042        super(p, de);
043
044        if (Constants.DEBUG) {
045            System.out.println("Entity118_XX constructor called");
046        }
047    }
048
049    /**
050     * Checks to see if the entity has any errors or warnings.
051     */
052    @Override
053    public void check() {
054    }
055
056    /**
057     * Returns a short String describing this Entity object's type.
058     *
059     * @return A short String describing this Entity object's type.
060     */
061    @Override
062    public String getTypeString() {
063        return "Entity128_XX - Ruled Surface - Unsupported";
064    }
065
066}