Ontimize 5.2072EN

com.ontimize.report
Interface ReportDesigner.ReportComponent

All Superinterfaces:
java.lang.Cloneable
All Known Subinterfaces:
ReportDesigner.TextReportComponent
All Known Implementing Classes:
ReportDesigner.AbstractReportComponent, ReportDesigner.AbstractTextReportComponent
Enclosing interface:
ReportDesigner

public static interface ReportDesigner.ReportComponent
extends java.lang.Cloneable


Nested Class Summary
static interface ReportDesigner.ReportComponent.ChangeListener
           
 
Method Summary
 void addChangeListener(ReportDesigner.ReportComponent.ChangeListener l)
           
 java.awt.Color getBackground()
           
 java.lang.String getBackgroundColorName()
           
 java.awt.Color getForeground()
           
 java.lang.String getForegroundColorName()
           
 int getHeight()
           
 java.lang.String getName()
           
 ReportDesigner.ReportProperty[] getProperties()
           
 ReportDesigner.ReportSection getReportSection()
           
 float getWeight()
           
 int getWidth()
           
 int getX1()
           
 int getX2()
           
 int getY1()
           
 int getY2()
           
 int getZ()
           
 boolean isAtPoint(int x, int y)
           
 boolean isAtRectangle(java.awt.Rectangle r)
           
 boolean isHeightPercent()
           
 boolean isResizableAtPoint(int x, int y)
           
 boolean isSelected()
           
 boolean isWidthPercent()
           
 void paintAt(java.awt.Graphics g)
           
 void removeChangeListener(ReportDesigner.ReportComponent.ChangeListener l)
           
 void resizeAtPoint(int x, int y, int dx, int dy, boolean orto)
           
 void setBackground(java.lang.String c)
           
 void setForeground(java.lang.String c)
           
 void setHeight(int h)
           
 void setHeightPercent(int heightPercent)
           
 void setName(java.lang.String s)
           
 void setReportSection(ReportDesigner.ReportSection rd)
           
 void setSelected(boolean sel)
           
 void setWeight(float w)
           
 void setWidth(int w)
           
 void setWidthPercent(int widthPercent)
           
 void setX(int x1, int x2)
           
 void setX1(int x)
           
 void setX2(int x)
           
 void setY(int y1, int y2)
           
 void setY1(int y)
           
 void setY2(int y)
           
 void setZ(int z)
           
 

Method Detail

setReportSection

public void setReportSection(ReportDesigner.ReportSection rd)

getReportSection

public ReportDesigner.ReportSection getReportSection()

addChangeListener

public void addChangeListener(ReportDesigner.ReportComponent.ChangeListener l)

removeChangeListener

public void removeChangeListener(ReportDesigner.ReportComponent.ChangeListener l)

getX1

public int getX1()

getY1

public int getY1()

getX2

public int getX2()

getY2

public int getY2()

getWidth

public int getWidth()

getHeight

public int getHeight()

getZ

public int getZ()

setX1

public void setX1(int x)

setY1

public void setY1(int y)

setX2

public void setX2(int x)

setY2

public void setY2(int y)

setWidth

public void setWidth(int w)

setHeight

public void setHeight(int h)

setZ

public void setZ(int z)

setX

public void setX(int x1,
                 int x2)

setY

public void setY(int y1,
                 int y2)

setWidthPercent

public void setWidthPercent(int widthPercent)

setHeightPercent

public void setHeightPercent(int heightPercent)

isWidthPercent

public boolean isWidthPercent()

isHeightPercent

public boolean isHeightPercent()

getName

public java.lang.String getName()

setName

public void setName(java.lang.String s)

isSelected

public boolean isSelected()

setSelected

public void setSelected(boolean sel)

paintAt

public void paintAt(java.awt.Graphics g)

resizeAtPoint

public void resizeAtPoint(int x,
                          int y,
                          int dx,
                          int dy,
                          boolean orto)

isResizableAtPoint

public boolean isResizableAtPoint(int x,
                                  int y)

isAtPoint

public boolean isAtPoint(int x,
                         int y)

isAtRectangle

public boolean isAtRectangle(java.awt.Rectangle r)

setForeground

public void setForeground(java.lang.String c)

setBackground

public void setBackground(java.lang.String c)

getForeground

public java.awt.Color getForeground()

getBackground

public java.awt.Color getBackground()

getForegroundColorName

public java.lang.String getForegroundColorName()

getBackgroundColorName

public java.lang.String getBackgroundColorName()

getProperties

public ReportDesigner.ReportProperty[] getProperties()

setWeight

public void setWeight(float w)

getWeight

public float getWeight()

Ontimize