blob: 3e7dbc96c83769c2909ba3dc7f0515402a63ef23 [file] [log] [blame]
Richard S. Hall186928b2006-09-28 19:54:30 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Richard S. Hall308c71e2006-04-04 12:42:45 +00009 *
Richard S. Hall186928b2006-09-28 19:54:30 +000010 * http://www.apache.org/licenses/LICENSE-2.0
Richard S. Hall308c71e2006-04-04 12:42:45 +000011 *
Richard S. Hall186928b2006-09-28 19:54:30 +000012 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Richard S. Hallfb3fe152006-04-04 13:11:15 +000018 */
Richard S. Hall308c71e2006-04-04 12:42:45 +000019package org.apache.felix.shell.gui;
20
21import java.awt.Component;
22
23/**
24 * A simple plugin interface for the GUI shell bundle.
25**/
26public interface Plugin
27{
28 /**
29 * Returns the name of the plugin.
30 * @return the name of the plugin.
31 **/
32 public String getName();
33
34 /**
35 * Returns the GUI associated with the plugin; this method should
36 * always return the same GUI instance when it is invoked.
37 * @return the GUI associated with the plugin.
38 **/
39 public Component getGUI();
40}