Properties Properties of the class
Methods All Methods of the class ordered by category.
Examples Some constructor examples

Back to Class descriptions Back to Class descriptions

Properties

Public Properties Public means that all clients can access the member by its name.
Private Properties Private restricts the access to the class itself. Only methods that are part of the same class can access private members.

Back to Top Back to Top

Public Properties

Properties Description

name

Name of the parameter list (PLIST) object

params

Vector of PARAM objects

Private Properties

Properties Description

plist

The parameter list object which creates the PLIST object

version

CVS version string of the constructor

created

Time object which stores the creation time of the PLIST object

Methods

Constructor Constructor of this class
Helper Helper functions only for internal usage
Internal Internal functions only for internal usage
Output Output functions

Back to Top Back to Top

Constructor

Methods Description

plist

PLIST Plist class object constructor.

Back to Top of Section Back to Top of Section

Helper

Methods Description

append

APPEND append a parameter to the parameter list.

combine

COMBINE multiple parameter lists (plist objects) into a single plist.

find

FIND overloads find routine for a parameter list.

get

GET get parameter list properties.

isfield

ISFIELD tests if the given field is one of the object properties.

isparam

ISPARAM look for a given key in the parameter list.

isvalid

ISVALID tests if the given plist has all the correct fields of the correct type.

nparams

NPARAMS returns the number of param objects in the list.

pset

PSET set parameter list properties.

remove

REMOVE remove a parameter from the parameter list.

set

SET set parameter list properties.

string

STRING converts a plist object to a command string which will recreate the plist object.

Back to Top of Section Back to Top of Section

Internal

Methods Description

subsasgn

SUBSASGN define index assignment for parameter list properties.

subsref

SUBSREF Define field name indexing for parameter list objects.

Back to Top of Section Back to Top of Section

Output

Methods Description

char

CHAR convert a parameter list into a string.

display

DISPLAY display plist object.

save

SAVE a plist object to file.

Back to Top of Section Back to Top of Section