public abstract class AbstractBackground extends java.lang.Object implements Background, XMLable
限定符和类型 | 字段和说明 |
---|---|
static int |
DEFAULT_SIZE |
构造器和说明 |
---|
AbstractBackground() |
限定符和类型 | 方法和说明 |
---|---|
java.lang.Object |
clone()
克隆
|
protected java.awt.image.BufferedImage |
createBufferedImage(int width,
int height) |
JSONObject |
createJSONConfig(Repository repo)
控件背景输出json到web端.
|
int |
fixHashCode(int code)
修正哈希码
|
void |
layoutDidChange(int width,
int height)
布局变化
|
void |
paint(java.awt.Graphics g,
Repository repo,
java.awt.Shape shape)
根据指定的画图对象和几何图形并结合模板计算上下文画背景
|
java.awt.image.BufferedImage |
paintImage(Repository repo,
int imageWidth,
int imageHeight)
根究指定大小绘制图片.
|
void |
preDealBackground(java.awt.Graphics g,
Repository repo,
java.awt.Point cellPoint,
int width,
int height)
根据指定的画图对象和尺寸来画背景,并且保存对应的单元格坐标点,背景预处理
|
Background |
readAdditionalAttr(XMLableReader reader) |
void |
readXML(XMLableReader reader)
读取子节点,应该会被XMLableReader.readXMLObject()调用多次
|
JSONObject |
toJSONObject()
将背景输出成JSON对象
|
JSONObject |
toJSONObject(Repository repo)
hugh:新增接口方法的默认实现,这样可以兼容其他的背景。
|
JSONObject |
toJSONObject(Repository repo,
java.awt.Dimension size) |
Background |
traverseForExport(ObjectHolder operate)
导出的时候更改背景
|
void |
writeAdditionalAttr(XMLPrintWriter writer) |
void |
writeXML(XMLPrintWriter writer)
Write XML.
|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
drawWithGradientLine, equals, getBackgroundType, paint
public static final int DEFAULT_SIZE
public void paint(java.awt.Graphics g, Repository repo, java.awt.Shape shape)
Background
paint
在接口中 Background
g
- 画图对象repo
- 模板上下文shape
- 集合图形public void layoutDidChange(int width, int height)
layoutDidChange
在接口中 Background
width
- 背景宽度height
- 背景高度public int fixHashCode(int code)
fixHashCode
在接口中 Background
code
- 已经计算好的哈希码public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
在接口中 Background
clone
在接口中 FCloneable
clone
在类中 java.lang.Object
java.lang.CloneNotSupportedException
public JSONObject toJSONObject() throws JSONException
toJSONObject
在接口中 Background
JSONException
public JSONObject toJSONObject(Repository repo) throws JSONException
toJSONObject
在接口中 Background
JSONException
public JSONObject toJSONObject(Repository repo, java.awt.Dimension size) throws JSONException
toJSONObject
在接口中 Background
JSONException
protected java.awt.image.BufferedImage createBufferedImage(int width, int height)
public Background readAdditionalAttr(XMLableReader reader)
readAdditionalAttr
在接口中 Background
public void writeAdditionalAttr(XMLPrintWriter writer)
writeAdditionalAttr
在接口中 Background
public void preDealBackground(java.awt.Graphics g, Repository repo, java.awt.Point cellPoint, int width, int height)
Background
preDealBackground
在接口中 Background
g
- 画图对象repo
- 模板上下文cellPoint
- 单元格坐标width
- 图片宽height
- 图片高public Background traverseForExport(ObjectHolder operate)
Background
traverseForExport
在接口中 Background
operate
- 导出的操作类型,excel,pdf,word...public JSONObject createJSONConfig(Repository repo) throws JSONException
createJSONConfig
在接口中 Background
repo
- 浏览器上下文JSONException
public java.awt.image.BufferedImage paintImage(Repository repo, int imageWidth, int imageHeight)
repo
- 浏览器上下文imageHeight
- 图片高度imageWidth
- 图片宽度public void readXML(XMLableReader reader)
XMLReadable
readXML
在接口中 XMLReadable
reader
- XML读取对象XMLableReader
public void writeXML(XMLPrintWriter writer)
XMLWriter