KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > sun > share > configbean > customizers > webservice > EndpointMapping


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 /*
20  * PortInfoMapping.java
21  *
22  * Created on October 27, 2003, 8:39 AM
23  */

24
25 package org.netbeans.modules.j2ee.sun.share.configbean.customizers.webservice;
26
27 import org.netbeans.modules.j2ee.sun.dd.api.common.WebserviceEndpoint;
28
29
30 /** Class that associates a web service endpoint with a string so we can do combobox
31  * selection easiser.
32  *
33  * @author Peter Williams
34  * @version %I%, %G%
35  */

36 public class EndpointMapping {
37
38     private WebserviceEndpoint endpoint;
39     private String JavaDoc displayText;
40     private boolean textOutOfDate;
41
42     public EndpointMapping(final WebserviceEndpoint e) {
43         endpoint = e;
44         displayText = buildDisplayText();
45     }
46
47     public EndpointMapping(final WebserviceEndpoint e, final String JavaDoc display) {
48         endpoint = e;
49         displayText = display;
50     }
51
52     public String JavaDoc toString() {
53         if(textOutOfDate) {
54             displayText = buildDisplayText();
55         }
56
57         return displayText;
58     }
59
60     public WebserviceEndpoint getEndpoint() {
61         return endpoint;
62     }
63
64     public void updateDisplayText() {
65         textOutOfDate = true;
66     }
67
68     private String JavaDoc buildDisplayText() {
69         String JavaDoc name = endpoint.getPortComponentName();
70         StringBuffer JavaDoc resultBuf = new StringBuffer JavaDoc(128);
71
72         if(name != null && name.length() > 0) {
73             resultBuf.append(name);
74         } else {
75             resultBuf.append(WebServiceDescriptorCustomizer.bundle.getString("LBL_UntitledEndpoint"));
76         }
77
78         textOutOfDate = false;
79         return resultBuf.toString();
80     }
81 }
82
Popular Tags