📄 package-info.java
字号:
/**
* Provides the classes necessary to access the WordNet 2.0 command line interface
* and create JWord objects based on the lexical information in the related database.
* <p>
* The JWords framework involves two entities:
* JSenses and JWords. A JSense is an object that stores the lexical information of
* a single sense of a given word, and a JWord is a collection of all such JSenses of
* said word. Methods are provided to access the information contained in both objects.
* <p>
* JWords can be used in a wide range of applications, from dictionaries, to translators,
* to natural language processing. Any program that could use access to the information
* stored in the WordNet 2.0 lexical reference system in an easy to use object-oriented
* format will benefit from JWords.
* <p>
* JWords works on both Windows and UNIX-like operating systems, and requires the
* WordNet 2.0 command line tool and database files.
* <p>
* To use JWords, you will need to download and install WordNet 2.0, which is available
* at <a href="http://wordnet.princeton.edu/" target="new">http://wordnet.princeton.edu/</a>.
* Enter the path to the WordNet command line interface in the JWords config.txt file.
* Make sure your classpath contains the path to the JWords package. In your program, you
* will need to prepare the WordNet interface by calling JWords.initialize() somewhere in
* the initialization portion of your code. You may then access WordNet and create JWords
* using the appropriate constructors and other methods. See the JWordsDemo program
* included with the JWords package for a usage example.
* <p>
* <a href="http://www.opensource.org/" target="new"><img src="osi-certified-120x100.png"
* alt="OSI certified" align="right" hspace="3" vspace="3" border="0"></a>
* This software is OSI Certified Open Source Software.
* <br>
* OSI Certified is a certification mark of the <a href="http://www.opensource.org/" target="new">
* Open Source Initiative</a>.
* <br>
* JWords is licensed under the terms of the BSD License.
* <p>
* Copyright (c) 2005, Charles F. Greenbacker III
* <br>
* All rights reserved.
* <p>
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* <p>
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* <br>
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* <br>
* * Neither the name of JWords nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
* <p>
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* <p>
* WordNet 2.0 Copyright 2003 by Princeton University. All rights reserved.
*/
package net.artificialminds.JWords;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -