C# Класс Monobjc.Tools.Generator.Parsers.Sgml.AttDef

An attribute definition in a DTD.
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
AttDef ( string name ) : System

Initialises a new instance of the AttDef class.

SetEnumeratedType ( string enumValues, AttributeType type ) : void

Sets the attribute definition to have an enumerated value.

SetPresence ( string token ) : bool

Sets the attribute presence declaration.

SetType ( string type ) : void

Sets the type of the attribute definition.

Описание методов

AttDef() публичный Метод

Initialises a new instance of the AttDef class.
public AttDef ( string name ) : System
name string The name of the attribute.
Результат System

SetEnumeratedType() публичный Метод

Sets the attribute definition to have an enumerated value.
If the type parameter is not either or .
public SetEnumeratedType ( string enumValues, AttributeType type ) : void
enumValues string The possible values in the enumeration.
type AttributeType The type to set the attribute to.
Результат void

SetPresence() публичный Метод

Sets the attribute presence declaration.
public SetPresence ( string token ) : bool
token string The string representation of the attribute presence, corresponding to one of the values in the enumeration.
Результат bool

SetType() публичный Метод

Sets the type of the attribute definition.
public SetType ( string type ) : void
type string The string representation of the attribute type, corresponding to the values in the enumeration.
Результат void