001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.autoupdate.updateprovider;
043:
044: import org.netbeans.Module;
045: import org.netbeans.modules.autoupdate.services.UpdateItemDeploymentImpl;
046: import org.netbeans.modules.autoupdate.services.Utilities;
047: import org.openide.modules.ModuleInfo;
048:
049: /**
050: *
051: * @author Jiri Rechtacek
052: */
053: public class InstalledModuleItem extends ModuleItem {
054:
055: private String codeName;
056: private String specificationVersion;
057: private ModuleInfo info;
058: private Module m;
059: private String author;
060: private String source;
061: private String installCluster;
062: private String installDate;
063:
064: public InstalledModuleItem(String codeName,
065: String specificationVersion, ModuleInfo info,
066: String author, String installCluster, String installTime) {
067: this .codeName = codeName;
068: this .specificationVersion = specificationVersion;
069: this .info = info;
070: this .author = author;
071: this .installCluster = installCluster;
072: this .installDate = installTime;
073: }
074:
075: @Override
076: public final String getCodeName() {
077: return codeName;
078: }
079:
080: @Override
081: public final String getSpecificationVersion() {
082: return specificationVersion;
083: }
084:
085: public String getSource() {
086: if (source == null) {
087: source = Utilities.readSourceFromUpdateTracking(info);
088: }
089: // fallback to product version
090: if (source == null) {
091: source = Utilities.getProductVersion();
092: }
093: return source;
094: }
095:
096: @Override
097: public String getAuthor() {
098: return author;
099: }
100:
101: @Override
102: public ModuleInfo getModuleInfo() {
103: return info;
104: }
105:
106: @Override
107: public String getAgreement() {
108: assert false : "Don't call getAgreement() on InstalledModuleItem "
109: + info;
110: return null;
111: }
112:
113: @Override
114: public int getDownloadSize() {
115: return 0;
116: }
117:
118: @Override
119: public String getDate() {
120: return installDate;
121: }
122:
123: @Override
124: public UpdateItemDeploymentImpl getUpdateItemDeploymentImpl() {
125: assert false : "Don't call getUpdateItemDeploymentImpl () on InstalledModuleItem.";
126: return null;
127: }
128:
129: @Override
130: public boolean isAutoload() {
131: return getModule() != null && getModule().isAutoload();
132: }
133:
134: @Override
135: public boolean isEager() {
136: return getModule() != null && getModule().isEager();
137: }
138:
139: private Module getModule() {
140: if (m == null) {
141: m = Utilities.toModule(info);
142: }
143: return m;
144: }
145: }
|