📄 class.java
字号:
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/**
* Title: XELOPES Data Mining Library
* Description: The XELOPES library is an open platform-independent and data-source-independent library for Embedded Data Mining.
* Copyright: Copyright (c) 2002 Prudential Systems Software GmbH
* Company: ZSoft (www.zsoft.ru), Prudsys (www.prudsys.com)
* @author Valentine Stepanenko (valentine.stepanenko@zsoft.ru)
* @version 1.0
*/
package com.prudsys.pdm.Cwm.Core;
/**
* A class is a description of a set of objects that share the same attributes,
* operations, methods, relationships, and semantics. A class may use a set of
* interfaces to specify collections of operations it provides to its environment.
* In the metamodel, a Class describes a set of objects sharing a collection of
* Features that are common to the set of objects.
*
*
*
* The purpose of a Class is to declare a collection of Features that fully
* describe the structure and behavior of objects. Some Classes may not be
* directly instantiated. These Classes are said to be abstract and exist only for
* other Classes to inherit and reuse the Features declared by them. No object may
* be a direct instance of an abstract Class, although an object may be an
* indirect instance of one through a subclass that is non-abstract.
*
*
*
* A Class acts as the namespace for various kinds of contained elements defined
* within its scope, including classes, interfaces and associations (note that
* this is purely a scoping construction and does not imply anything about
* aggregation). The contained classes can be used as ordinary classes in the
* container class. If a class inherits another class, the contents of the
* ancestor are available to its descendents if the visibility of an element is
* public or protected; however, if the visibility is private, then the element is
* not visible and therefore not available in the descendant.
*/
public class Class extends Classifier implements org.omg.cwm.objectmodel.core.Class
{
/**
* @roseuid 3C5E465D010D
*/
public Class()
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -