C# Class LiskovSubstitutionPrinciple.Rectangle

Mostra file Open project: 7digital/Liskov

Protected Properties

Property Type Description
m_height int
m_width int

Public Methods

Method Description
GetArea ( ) : int
getHeight ( ) : int
getWidth ( ) : int
setHeight ( int height ) : void
setWidth ( int width ) : void

Method Details

GetArea() public method

public GetArea ( ) : int
return int

getHeight() public method

public getHeight ( ) : int
return int

getWidth() public method

public getWidth ( ) : int
return int

setHeight() public method

public setHeight ( int height ) : void
height int
return void

setWidth() public method

public setWidth ( int width ) : void
width int
return void

Property Details

m_height protected_oe property

protected int m_height
return int

m_width protected_oe property

protected int m_width
return int