1 package org.catacomb.druid.gui.edit;
2
3 import org.catacomb.report.E;
4
5
6
7
8
9 public class DruWindowEditEffect extends Effect {
10
11
12 String config;
13
14 public DruWindowEditEffect(String targetCpt, String cfg) {
15 super(targetCpt);
16 config = cfg;
17 }
18
19
20
21
22 public void apply(boolean b) {
23 Object tgt = getTarget();
24 E.missing("cant access edot ctrl " + tgt);
25 // Sys.getSys().getModelEditor().showEditor(config, tgt);
26 }
27
28
29 }