Beispiel #1
0
 public void verbSet( StringI name, Verb v )
 {
 }
Beispiel #2
0
 public void verbDel( StringI name )
 {
 }
Beispiel #3
0
 public Verb verbGet( StringI name )
 {
     return null;
 }
Beispiel #4
0
 public TypedAttribute attrGet( StringI name )
 {
     return null;
 }
Beispiel #5
0
 public void attrSet( StringI name, TypedAttribute v )
 {
 }
Beispiel #6
0
 public void verbSet( StringI name, Verb v )
 {
     throw new NotImplementedException();
 }
Beispiel #7
0
 public void attrDel( StringI name )
 {
 }
Beispiel #8
0
 public void attrSet( StringI name, TypedAttribute v )
 {
     throw new NotImplementedException();
 }
Beispiel #9
0
 public void verbDel( StringI name )
 {
     throw new NotImplementedException();
 }
Beispiel #10
0
 public TypedAttribute attrGet( StringI name )
 {
     return _attrs.ContainsKey( name ) ? _attrs[name] : null;
 }
Beispiel #11
0
 public bool attrHas( StringI name )
 {
     return false;
 }
Beispiel #12
0
 public void attrDel( StringI name )
 {
     _attrs.Remove( name );
 }
Beispiel #13
0
 public void verbSet( StringI name, Verb v )
 {
     _verbs[name] = v;
 }
Beispiel #14
0
 public Verb verbGet( StringI name )
 {
     return _verbs.ContainsKey( name ) ? _verbs[name] : null;
 }
Beispiel #15
0
 public void verbDel( StringI name )
 {
     _verbs.Remove( name );
 }
Beispiel #16
0
 public void attrSet( StringI name, TypedAttribute v )
 {
     _attrs[name] = v;
 }