C# Class NekoKun.AbstractFile

Show file Open project: NekoProject/NekoKun Class Usage Examples

Public Properties

Property Type Description
filename string

Protected Properties

Property Type Description
editor AbstractEditor
isDirty bool
pendingDelete bool

Public Methods

Method Description
AbstractFile ( string filename ) : System
Commit ( ) : void
CreateEditor ( ) : AbstractEditor
Goto ( NavPoint pt ) : void
MakeDirty ( ) : void
PendingDelete ( ) : void
ShowEditor ( ) : void
ToString ( ) : string

Protected Methods

Method Description
Delete ( ) : void
Save ( ) : void

Method Details

AbstractFile() public method

public AbstractFile ( string filename ) : System
filename string
return System

Commit() public method

public Commit ( ) : void
return void

CreateEditor() public abstract method

public abstract CreateEditor ( ) : AbstractEditor
return AbstractEditor

Delete() protected method

protected Delete ( ) : void
return void

Goto() public method

public Goto ( NavPoint pt ) : void
pt NavPoint
return void

MakeDirty() public method

public MakeDirty ( ) : void
return void

PendingDelete() public method

public PendingDelete ( ) : void
return void

Save() protected abstract method

protected abstract Save ( ) : void
return void

ShowEditor() public method

public ShowEditor ( ) : void
return void

ToString() public method

public ToString ( ) : string
return string

Property Details

editor protected property

protected AbstractEditor,NekoKun editor
return AbstractEditor

filename public property

public string filename
return string

isDirty protected property

protected bool isDirty
return bool

pendingDelete protected property

protected bool pendingDelete
return bool