%line | %branch | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
nl.toolforge.karma.core.module.ManifestModule |
|
|
1 | /* |
|
2 | Karma core - Core of the Karma application |
|
3 | Copyright (C) 2004 Toolforge <www.toolforge.nl> |
|
4 | ||
5 | This library is free software; you can redistribute it and/or |
|
6 | modify it under the terms of the GNU Lesser General Public |
|
7 | License as published by the Free Software Foundation; either |
|
8 | version 2.1 of the License, or (at your option) any later version. |
|
9 | ||
10 | This library is distributed in the hope that it will be useful, |
|
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 | Lesser General Public License for more details. |
|
14 | ||
15 | You should have received a copy of the GNU Lesser General Public |
|
16 | License along with this library; if not, write to the Free Software |
|
17 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
18 | */ |
|
19 | package nl.toolforge.karma.core.module; |
|
20 | ||
21 | import nl.toolforge.karma.core.KarmaRuntimeException; |
|
22 | import nl.toolforge.karma.core.Version; |
|
23 | import nl.toolforge.karma.core.location.Location; |
|
24 | import nl.toolforge.karma.core.manifest.util.ModuleLayoutTemplate; |
|
25 | import nl.toolforge.karma.core.vc.AuthenticationException; |
|
26 | import nl.toolforge.karma.core.vc.Authenticator; |
|
27 | import nl.toolforge.karma.core.vc.DevelopmentLine; |
|
28 | import nl.toolforge.karma.core.vc.VersionControlException; |
|
29 | ||
30 | import java.util.Set; |
|
31 | ||
32 | /** |
|
33 | * |
|
34 | * |
|
35 | * @author D.A. Smedes |
|
36 | * @version $Id: ManifestModule.java,v 1.6 2004/11/02 23:57:07 asmedes Exp $ |
|
37 | */ |
|
38 | public class ManifestModule extends AdminModule { |
|
39 | ||
40 | public ManifestModule(String moduleName, Location location) { |
|
41 | 0 | super(moduleName, location); |
42 | 0 | } |
43 | ||
44 | ||
45 | public ModuleLayoutTemplate getLayoutTemplate() { |
|
46 | 0 | throw new KarmaRuntimeException("To be implemented ..."); |
47 | } |
|
48 | ||
49 | public void createRemote(Authenticator authenticator, String createComment) throws VersionControlException, AuthenticationException { |
|
50 | ||
51 | 0 | } |
52 | ||
53 | ||
54 | ||
55 | ||
56 | // Should be removed after Module is better ...... |
|
57 | ||
58 | ||
59 | ||
60 | ||
61 | public Type getType() { |
|
62 | 0 | return null; |
63 | } |
|
64 | ||
65 | public DevelopmentLine getPatchLine() { |
|
66 | 0 | return null; |
67 | } |
|
68 | ||
69 | public void markPatchLine(boolean mark) { |
|
70 | ||
71 | 0 | } |
72 | ||
73 | public boolean hasPatchLine() { |
|
74 | 0 | return false; |
75 | } |
|
76 | ||
77 | public boolean hasDevelopmentLine() { |
|
78 | 0 | return false; |
79 | } |
|
80 | ||
81 | public void markDevelopmentLine(boolean mark) { |
|
82 | ||
83 | 0 | } |
84 | ||
85 | public Version getVersion() { |
|
86 | 0 | return null; |
87 | } |
|
88 | ||
89 | public String getVersionAsString() { |
|
90 | 0 | return null; |
91 | } |
|
92 | ||
93 | public boolean hasVersion() { |
|
94 | 0 | return false; |
95 | } |
|
96 | ||
97 | public Set getDependencies() { |
|
98 | 0 | return null; |
99 | } |
|
100 | ||
101 | public void createRemote(String createComment) { |
|
102 | ||
103 | 0 | } |
104 | } |
This report is generated by jcoverage, Maven and Maven JCoverage Plugin. |