org.stathissideris.ascii2image.text.AbstractCell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package org.stathissideris.ascii2image.text;
/**
*
* @author Efstathios Sideris
*/
public class AbstractCell {
// ::remove folder when __HAXE__
// ::remove folder when __CORE__
public int rows[][] = new int[3][3];
{
for(int y = 0; y < 3; y++)
for(int x = 0; x < 3; x++)
rows[x][y] = 0;
}
static AbstractCell makeHorizontalLine(){
AbstractCell result = new AbstractCell();
result.rows[0][1] = 1;
result.rows[1][1] = 1;
result.rows[2][1] = 1;
return result;
}
static AbstractCell makeVerticalLine(){
AbstractCell result = new AbstractCell();
result.rows[1][0] = 1;
result.rows[1][1] = 1;
result.rows[1][2] = 1;
return result;
}
static AbstractCell makeCorner1(){
AbstractCell result = new AbstractCell();
result.rows[1][1] = 1;
result.rows[1][2] = 1;
result.rows[2][1] = 1;
return result;
}
static AbstractCell makeCorner2(){
AbstractCell result = new AbstractCell();
result.rows[0][1] = 1;
result.rows[1][1] = 1;
result.rows[1][2] = 1;
return result;
}
static AbstractCell makeCorner3(){
AbstractCell result = new AbstractCell();
result.rows[0][1] = 1;
result.rows[1][1] = 1;
result.rows[1][0] = 1;
return result;
}
static AbstractCell makeCorner4(){
AbstractCell result = new AbstractCell();
result.rows[2][1] = 1;
result.rows[1][1] = 1;
result.rows[1][0] = 1;
return result;
}
static AbstractCell makeT(){
AbstractCell result = AbstractCell.makeHorizontalLine();
result.rows[1][2] = 1;
return result;
}
static AbstractCell makeInverseT(){
AbstractCell result = AbstractCell.makeHorizontalLine();
result.rows[1][0] = 1;
return result;
}
static AbstractCell makeK(){
AbstractCell result = AbstractCell.makeVerticalLine();
result.rows[2][1] = 1;
return result;
}
static AbstractCell makeInverseK(){
AbstractCell result = AbstractCell.makeVerticalLine();
result.rows[0][1] = 1;
return result;
}
static AbstractCell makeCross(){
AbstractCell result = AbstractCell.makeVerticalLine();
result.rows[0][1] = 1;
result.rows[2][1] = 1;
return result;
}
static AbstractCell makeStar(){
AbstractCell result = AbstractCell.makeVerticalLine();
for(int y = 0; y < 3; y++)
for(int x = 0; x < 3; x++)
result.rows[x][y] = 1;
return result;
}
}