protected void doGeneration() { try { model.accept(this); } catch (Exception e) { receiver.error(e); } }
public static boolean isEncoded(Model model) { if (model == null) return false; for (Service service : model.getServices()) { for (Port port : service.getPorts()) { for (Operation operation : port.getOperations()) { if (operation.getUse() != null && operation.getUse().equals(SOAPUse.LITERAL)) return false; } } } return true; }
public void visit(Model model) throws Exception { for (Service service : model.getServices()) { service.accept(this); } }