Uses of Class
org.jcsp.awt.GraphicsCommand
-
Packages that use GraphicsCommand Package Description org.jcsp.awt This provides CSP extensions for all AWTComponentcomponents: GUI events and widget configurations map to channel communications. -
-
Uses of GraphicsCommand in org.jcsp.awt
Subclasses of GraphicsCommand in org.jcsp.awt Modifier and Type Class Description static classGraphicsCommand.ClearRectThis is the (immutable) command object forjava.awt.Graphics.clearRect.static classGraphicsCommand.ClipRectThis is the (immutable) command object forjava.awt.Graphics.clipRect.static classGraphicsCommand.CopyAreaThis is the (immutable) command object forjava.awt.Graphics.copyArea.static classGraphicsCommand.Draw3DRectThis is the (immutable) command object forjava.awt.Graphics.draw3DRect.static classGraphicsCommand.DrawArcThis is the (immutable) command object forjava.awt.Graphics.drawArc.static classGraphicsCommand.DrawBytesThis is the (immutable) command object forjava.awt.Graphics.drawBytes.static classGraphicsCommand.DrawCharsThis is the (immutable) command object forjava.awt.Graphics.drawChars.static classGraphicsCommand.DrawImageThis is the (immutable) command object forjava.awt.Graphics.drawImage.static classGraphicsCommand.DrawLineThis is the (immutable) command object forjava.awt.Graphics.drawLine.static classGraphicsCommand.DrawOvalThis is the (immutable) command object forjava.awt.Graphics.drawOval.static classGraphicsCommand.DrawPolygonThis is the (immutable) command object forjava.awt.Graphics.drawPolygon.static classGraphicsCommand.DrawPolylineThis is the (immutable) command object forjava.awt.Graphics.drawPolyline.static classGraphicsCommand.DrawRectThis is the (immutable) command object forjava.awt.Graphics.drawRect.static classGraphicsCommand.DrawRoundRectThis is the (immutable) command object forjava.awt.Graphics.drawRoundRect.static classGraphicsCommand.DrawStringThis is the (immutable) command object forjava.awt.Graphics.drawString.static classGraphicsCommand.Fill3DRectThis is the (immutable) command object forjava.awt.Graphics.translate.static classGraphicsCommand.FillArcThis is the (immutable) command object forjava.awt.Graphics.fillArc.static classGraphicsCommand.FillOvalThis is the (immutable) command object forjava.awt.Graphics.fillOval.static classGraphicsCommand.FillPolygonThis is the (immutable) command object forjava.awt.Graphics.fillPolygon.static classGraphicsCommand.FillRectThis is the (immutable) command object forjava.awt.Graphics.fillRect.static classGraphicsCommand.FillRoundRectThis is the (immutable) command object forjava.awt.Graphics.fillRoundRect.static classGraphicsCommand.GeneralThis is the command object holding aGraphicsCommand.Graphicobject implementing an arbitrary set of graphics operations.static classGraphicsCommand.SetClipThis is the (immutable) command object forjava.awt.Graphics.setClip.static classGraphicsCommand.SetColorThis is the (immutable) command object forjava.awt.Graphics.setColor.static classGraphicsCommand.SetFontThis is the (immutable) command object forjava.awt.Graphics.setFont.static classGraphicsCommand.SetXORModeThis is the (immutable) command object forjava.awt.Graphics.setXORMode.static classGraphicsCommand.TranslateThis is the (immutable) command object forjava.awt.Graphics.translate.Fields in org.jcsp.awt declared as GraphicsCommand Modifier and Type Field Description static GraphicsCommandGraphicsCommand. NULLThis is the null command whose interpretation is a no-op.static GraphicsCommandGraphicsCommand. SET_PAINT_MODEThis is the (immutable) command object forjava.awt.Graphics.setPaintMode.Methods in org.jcsp.awt that return GraphicsCommand Modifier and Type Method Description GraphicsCommand[]Display. get()Returns a copy of the array of GraphicsCommands currently held.GraphicsCommand[]DisplayList. get()Returns a copy of the array of GraphicsCommands currently held.Methods in org.jcsp.awt with parameters of type GraphicsCommand Modifier and Type Method Description booleanDisplay. change(GraphicsCommand[] c, int i)Changes the array of GraphicsCommands to be interpreted by replacing elements i onwards with the new ones.booleanDisplay. change(GraphicsCommand c, int i)Changes the array of GraphicsCommands to be executed by replacing element i with the new one.booleanDisplayList. change(GraphicsCommand[] c, int i)Changes the array of GraphicsCommands to be executed by replacing elements i onwards with the new ones.booleanDisplayList. change(GraphicsCommand c, int i)Changes the array of GraphicsCommands to be executed by replacing element i with the new one.intDisplay. extend(GraphicsCommand c)Extends the array of GraphicsCommands to be executed by one command.intDisplay. extend(GraphicsCommand[] c)Extends the array of GraphicsCommands to be interpreted.intDisplayList. extend(GraphicsCommand c)Extends the array of GraphicsCommands to be executed by one command.intDisplayList. extend(GraphicsCommand[] c)Extends the array of GraphicsCommands to be executed.voidDisplay. set(GraphicsCommand c)Sets the GraphicsCommand to be interpreted.voidDisplay. set(GraphicsCommand[] c)Sets the array of GraphicsCommands to be interpreted.voidDisplayList. set(GraphicsCommand c)Sets the GraphicsCommand to be executed.voidDisplayList. set(GraphicsCommand[] c)Sets the array of GraphicsCommands to be executed.
-