📄 dasdlproperty.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.DMSII;
import com.prudsys.pdm.Cwm.Core.ModelElement;
/**
* The DASDL language source file from which DMS II databases are built contains a
* large number (>100) of options related primarily to the physical
* characteristics or deployment of DMS II databases and the data and set
* structures they contain.
*
* Generally, these ?DASDL properties? are of the form <name> = <string>, where
* the meaning of the contents of <string> is specific to the property that is
* being described (i.e., knowing the content of <name>). Also, new DASDL
* properties are added from time to time. Capturing these DASDL properties as
* <name>/<string> pairs has several important side-effects, including
*
*
*
* a much simplified DMS II model overall,
*
* addition of new properties without having to change the model, and
*
* maintenance of the order (because of the ordered nature of the association
* to
*
* ModelElement) in which the property values were supplied in the DASDL
* source.
*
*
*
* Note that allowing a DASDL remark (i.e., a %-comment) to be a DASDL property in
* this case allows preservation of the order remarks with respect to other DASDL
* properties.
*/
public class DASDLProperty extends ModelElement
{
/**
* Contains the text of the DASDL property. The precise content of the string is
* dependent upon the name of the DASDL property defined in the name attribute
* inherited from ModelElement.
*/
public com.prudsys.pdm.Cwm.Core.String text;
public ModelElement owner;
public DASDLProperty()
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -