001/* 002 * Copyright (c) 2003-2010 The Regents of the University of California. 003 * All rights reserved. 004 * 005 * '$Author: welker $' 006 * '$Date: 2010-05-05 22:21:26 -0700 (Wed, 05 May 2010) $' 007 * '$Revision: 24234 $' 008 * 009 * Permission is hereby granted, without written agreement and without 010 * license or royalty fees, to use, copy, modify, and distribute this 011 * software and its documentation for any purpose, provided that the above 012 * copyright notice and the following two paragraphs appear in all copies 013 * of this software. 014 * 015 * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY 016 * FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 017 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF 018 * THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF 019 * SUCH DAMAGE. 020 * 021 * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, 022 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 023 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE 024 * PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF 025 * CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, 026 * ENHANCEMENTS, OR MODIFICATIONS. 027 * 028 */ 029package org.kepler.moml; 030 031import org.kepler.kar.karxml.KarXml; 032 033import ptolemy.kernel.CompositeEntity; 034import ptolemy.kernel.util.IllegalActionException; 035import ptolemy.kernel.util.NameDuplicationException; 036import ptolemy.kernel.util.Workspace; 037import ptolemy.moml.EntityLibrary; 038 039/** 040 * Represents a remote kar file on search result panel 041 * @author tao 042 * 043 */ 044public class RemoteKAREntityLibrary extends EntityLibrary 045{ 046 /** 047 * Default constructor 048 */ 049 public RemoteKAREntityLibrary() 050 { 051 052 } 053 054 /** 055 * Constructor 056 * @param workspace 057 */ 058 public RemoteKAREntityLibrary(Workspace workspace) 059 { 060 super(workspace); 061 } 062 063 /** 064 *Constructor 065 * @param container 066 * @param name 067 * @throws NameDuplicationException 068 * @throws IllegalActionException 069 */ 070 public RemoteKAREntityLibrary(CompositeEntity container, String name) 071 throws NameDuplicationException, IllegalActionException 072 { 073 super(container, name); 074 } 075 076 /** 077 * Get kar xml 078 * @return the kar xml associated with the entity 079 */ 080 public KarXml getKarXml() 081 { 082 return karXml; 083 } 084 085 protected KarXml karXml; 086}