001/* 002 * Copyright (c) 2010-2011 The Regents of the University of California. 003 * All rights reserved. 004 * 005 * 006 * Permission is hereby granted, without written agreement and without 007 * license or royalty fees, to use, copy, modify, and distribute this 008 * software and its documentation for any purpose, provided that the above 009 * copyright notice and the following two paragraphs appear in all copies 010 * of this software. 011 * 012 * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY 013 * FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 014 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF 015 * THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF 016 * SUCH DAMAGE. 017 * 018 * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, 019 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 020 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE 021 * PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF 022 * CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, 023 * ENHANCEMENTS, OR MODIFICATIONS. 024 * 025 */ 026 027package org.kepler.moml; 028 029/** 030 * Created by IntelliJ IDEA. 031 * User: sean 032 * Date: Mar 25, 2010 033 * Time: 3:57:06 PM 034 * To change this template use File | Settings | File Templates. 035 */ 036 037 038import ptolemy.kernel.CompositeEntity; 039import ptolemy.kernel.util.IllegalActionException; 040import ptolemy.kernel.util.NameDuplicationException; 041import ptolemy.kernel.util.Workspace; 042import ptolemy.moml.EntityLibrary; 043 044/** 045 * A convenience class to determine the different types of 046 * EntityLibraries in the trees for assigning icons. 047 * @author riddle 048 * 049 */ 050public class RemoteRepositoryEntityLibrary extends EntityLibrary { 051 052 /** 053 * 054 */ 055 public RemoteRepositoryEntityLibrary() { 056 } 057 058 /** 059 * @param workspace 060 */ 061 public RemoteRepositoryEntityLibrary(Workspace workspace) { 062 super(workspace); 063 } 064 065 /** 066 * @param container 067 * @param name 068 * @throws NameDuplicationException 069 * @throws IllegalActionException 070 */ 071 public RemoteRepositoryEntityLibrary(CompositeEntity container, String name) 072 throws NameDuplicationException, IllegalActionException { 073 super(container, name); 074 } 075 076}