public void execute()
// -------------
// -------------
{
// ---------
Folder f = in.val();
f.createRegularDoc(title.val());
// ---------
}
// -------------
@Override
public boolean checkInputPinsCoverage()
{
if (in.val() == null)
{
throw new CommandPreconditionsException("Please, select input.");
}
return true;
}
// -------------