1 20 package org.objectweb.modfact.jmi.service.cmdline.common; 21 22 25 public abstract class ModfactApplicationBase extends org.objectweb.util.cmdline.lib.ApplicationBase { 26 27 31 protected ModfactApplicationBase(org.objectweb.util.cmdline.lib.DefaultCommandLine commandLine) { 32 super(commandLine, true); 33 getCommandLine().addOption(new OptionQuiet(this)); 34 } 35 36 40 public String getMailingList() { 41 return "modfact@lip6.fr"; 42 } 43 44 49 public String [] getVersionInformation() { 50 return new String [] { 51 getIdentity(), 52 "", 53 "Copyright (C) 2000-2004 Laboratoire d'Informatique Paris 6 (LIP6)", 54 "Contact: " + getMailingList(), 55 "", 56 "ModFact is free software; you can redistribute it and/or", 57 "modify it under the terms of the GNU Lesser General Public", 58 "License as published by the Free Software Foundation; either", 59 "version 2 of the License, or any later version.", 60 "", 61 "ModFact is distributed in the hope that it will be useful,", 62 "but WITHOUT ANY WARRANTY; without even the implied warranty of", 63 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU", 64 "Lesser General Public License for more details.", 65 "", 66 "You should have received a copy of the GNU Lesser General Public", 67 "License along with this library; if not, write to the Free Software", 68 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA" }; 69 } 70 71 } 72 | Popular Tags |