com.ctreber.acearth.scanbit.ScanBitGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml Show documentation
Show all versions of plantuml Show documentation
PlantUML is a component that allows to quickly write :
* sequence diagram,
* use case diagram,
* class diagram,
* activity diagram,
* component diagram,
* state diagram
* object diagram
The newest version!
package com.ctreber.acearth.scanbit;
/**
* A ScanBitGenerator produces ScanBits.
*
* © 2002 Christian Treber, [email protected] (Nov 11, 2002)
* @author Christian Treber, [email protected]
*
*/
abstract public class ScanBitGenerator
{
int fImageHeight;
int fImageWidth;
protected ScanBit[] fScanBitsArray;
abstract public void generateScanBits();
public void setImageHeight(int pImageHeight)
{
fImageHeight = pImageHeight;
}
public void setImageWidth(int pImageWidth)
{
fImageWidth = pImageWidth;
}
public ScanBit[] getScanBits()
{
return fScanBitsArray;
}
}