📄 description.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.BusinessInformation;
import com.prudsys.pdm.Cwm.Core.*;
/**
* Instances of the Description class contain arbitrary textual information
* relevant to a particular ModelElement. While Description instances may contain
* any desired textual information, they will typically contain documentation or
* references to external reference information about the owning ModelElement.
*
*
*
* Any ModelElement may have multiple Description instances associated with it.
* Indeed, a ModelElement instance that is a Description instance may itself have
* multiple Description instances linked to it. Also, a hierarchies of Description
* instances can be constructed.
*
*
*
* Description instances are meant to hold descriptive textual information that
* will be stored in the metamodel itself. In contrast, Document instances are
* meant to describe the location documentary information stored outside the
* metamodel.
*/
public class Description extends Namespace
{
/**
* Contains a textual description of information pertaining to the owning
* ModelElement.
*/
public com.prudsys.pdm.Cwm.Core.String body;
/**
* Contains an identification of the language in which the content of the body
* attribute is specified. If desired, the language specification may be applied
* to the name attribute derived from ModelElement as well.
*/
public Name language;
/**
* Contains a textual description of the type of information the Description
* represents. Specific contents are usage defined.
*/
public com.prudsys.pdm.Cwm.Core.String type;
public ModelElement modelElement[];
public Description()
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -