01: package org.osbl.client.wings.devtools;
02:
03: import javax.swing.*;
04:
05: public class DumpAuthorizationItemsDevTool extends
06: DumpItemRegistryDevTool {
07: public DumpAuthorizationItemsDevTool() {
08: super ("Authorization Items");
09: putValue(SERVICE, "AuthorizationItems");
10: putValue(Action.SHORT_DESCRIPTION,
11: "Dump authorization items to System.out");
12: }
13: }
|