ingo@1115: /* ingo@1115: * Copyright (c) 2010 by Intevation GmbH ingo@1115: * ingo@1115: * This program is free software under the LGPL (>=v2.1) ingo@1115: * Read the file LGPL.txt coming with the software for details ingo@1115: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@1115: */ ingo@1115: tim@597: package de.intevation.gnv.artifacts.services.requestobjects; sascha@779: tim@597: /** ingo@792: * This is the interface description of Parameter. Currently, there ingo@792: * are two methods defined:
ingo@792: *
    ingo@792: *
  1. getName(): Returns the name of this parameter.
  2. ingo@792: *
  3. getID(): Returns the id of this parameter.
  4. ingo@792: *
ingo@792: * sascha@780: * @author Tim Englich tim@597: */ tim@597: public interface Parameter { sascha@778: ingo@792: /** tim@826: * The Name of this Parameter ingo@792: * @return the name of this parameter. ingo@792: */ tim@597: String getName(); ingo@792: /** tim@826: * The ID of this Parameter ingo@792: * @return the id of this parameter. ingo@792: */ ingo@792: String getID(); tim@597: tim@597: } sascha@836: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :