Package hudson.util

Examples of hudson.util.ListBoxModel.writeTo()


                m.add(new ListBoxModel.Option(vm.getName(), vm.getName()));
            }
            if( m.size() > 0 )
                m.get(0).selected = true;
        }
        m.writeTo(req, rsp);
    }

    public void doSnapshotNameValues(StaplerRequest req, StaplerResponse rsp, @QueryParameter("vm") String vm, @QueryParameter("hypervisor") String hypervisor) throws IOException, ServletException {
        ListBoxModel m = new ListBoxModel();
        m.add(new ListBoxModel.Option("", ""));
View Full Code Here


                  }
                }
            }
        }
       
        m.writeTo(req, rsp);
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.