1 18 19 package de.gulden.framework.amoda.environment.gui.behaviour; 20 21 import de.gulden.framework.amoda.generic.behaviour.GenericCommand; 22 import java.util.*; 23 24 30 public class CommandExportView extends GenericCommand { 31 32 36 public void perform() { 37 de.gulden.framework.amoda.model.document.DocumentView view=getApplication().getWorkspace().getActiveView(); 38 if (view!=null) { 39 getApplication().message("*** TO DO ***"); 40 87 88 } else { 89 getApplication().message("This requires a currently selected document view."); 90 } 91 } 92 93 } | Popular Tags |