Yurttas/PL/OOL/Java/F/09/02/00/CheckCommand.java

From ZCubes Wiki
Revision as of 16:20, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="java" line start="1" enclose="div">import java.awt.*; public class CheckCommand extends Checkbox implements Command { Comm...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1import java.awt.*;
 2
 3public class CheckCommand extends Checkbox
 4                          implements Command {
 5
 6  Command command;
 7
 8  public CheckCommand(String caption,
 9                      CheckboxGroup cBGroup,
10                      Command command) {
11    super(caption, cBGroup, false);
12    this.command  = command;
13  }
14
15  public void Execute() {
16    command.Execute();
17  }
18
19}