cadencii.WaveUnitConfigElementStub.getNakedKey C# (CSharp) Method

getNakedKey() public method

public getNakedKey ( ) : string
return string
        public string getNakedKey()
        {
            return this.key;
        }

Usage Example

 public void testSetKey()
 {
     WaveUnitConfigElementStub e = new WaveUnitConfigElementStub();
     e.setNakedKey( null );
     e.setKey( "Bar" );
     Assert.AreEqual( "Bar", e.getNakedKey() );
 }
All Usage Examples Of cadencii.WaveUnitConfigElementStub::getNakedKey