Skip to content

Commit a409e55

Browse files
committed
Modified tag's directory names due to re-architect with later releases starting with version 0.5.
1 parent 43018cc commit a409e55

File tree

2,050 files changed

+63793
-47324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,050 files changed

+63793
-47324
lines changed

jsf-flex-build-plugIn/jsf-flex-plugIn/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.googlecode.jsf-flex.jsf-flex-build-plugIn-project</groupId>
88
<artifactId>jsf-flex-build-plugIn-main</artifactId>
9-
<version>${jsf.flex.version}</version>
9+
<version>1.0.1b</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

jsf-flex-build-plugIn/jsf-flex-plugIn/src/main/java/com/googlecode/jsfFlexPlugIn/inspector/AbstractJsfFlexInspectorBase.java

Lines changed: 0 additions & 69 deletions
This file was deleted.

jsf-flex-build-plugIn/jsf-flex-plugIn/src/main/java/com/googlecode/jsfFlexPlugIn/inspector/IJsfFlexInspectListener.java

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
package com.googlecode.jsfFlexPlugIn.inspector;
20+
21+
import java.util.List;
22+
import java.util.Map;
23+
24+
/**
25+
* @author Ji Hoon Kim
26+
*/
27+
public interface _JsfFlexInspectListener {
28+
29+
void inspectFileFinished(List<Map<String, ? extends Object>> inspectedList, String sourceInspected, String packageName);
30+
31+
void inspectionCompleted();
32+
33+
}
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
package com.googlecode.jsfFlexPlugIn.inspector;
20+
21+
import java.util.LinkedList;
22+
import java.util.List;
23+
import java.util.Map;
24+
25+
/**
26+
* @author Ji Hoon Kim
27+
*/
28+
public abstract class _JsfFlexInspectorBase {
29+
30+
private final String _dirPath;
31+
private final List<_JsfFlexInspectListener> _jsfFlexInspectListeners;
32+
33+
public _JsfFlexInspectorBase(){
34+
super();
35+
_dirPath = null;
36+
}
37+
38+
public _JsfFlexInspectorBase(String dirPath){
39+
super();
40+
_dirPath = dirPath;
41+
}
42+
43+
{
44+
_jsfFlexInspectListeners = new LinkedList<_JsfFlexInspectListener>();
45+
}
46+
47+
protected String getDirPath(){
48+
return _dirPath;
49+
}
50+
51+
public synchronized void addInspectListener(_JsfFlexInspectListener callBack){
52+
_jsfFlexInspectListeners.add(callBack);
53+
}
54+
55+
protected synchronized void inspectFileFinished(List<Map<String, ? extends Object>> inspectedList, String inspectedFileName, String inspectedPackage){
56+
for(_JsfFlexInspectListener inspectedCallBack : _jsfFlexInspectListeners){
57+
inspectedCallBack.inspectFileFinished(inspectedList, inspectedFileName, inspectedPackage);
58+
}
59+
}
60+
61+
protected synchronized void inspectionCompleted(){
62+
for(_JsfFlexInspectListener inspectedCallBack : _jsfFlexInspectListeners){
63+
inspectedCallBack.inspectionCompleted();
64+
}
65+
}
66+
67+
public abstract void inspectFiles();
68+
69+
}

jsf-flex-build-plugIn/jsf-flex-plugIn/src/main/java/com/googlecode/jsfFlexPlugIn/inspector/qdox/JsfFlexQdoxInspector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
import java.util.List;
2525
import java.util.Map;
2626

27-
import com.googlecode.jsfFlexPlugIn.inspector.AbstractJsfFlexInspectorBase;
27+
import com.googlecode.jsfFlexPlugIn.inspector._JsfFlexInspectorBase;
2828
import com.thoughtworks.qdox.JavaDocBuilder;
2929
import com.thoughtworks.qdox.model.DocletTag;
3030
import com.thoughtworks.qdox.model.JavaClass;
3131

3232
/**
3333
* @author Ji Hoon Kim
3434
*/
35-
public final class JsfFlexQdoxInspector extends AbstractJsfFlexInspectorBase {
35+
public final class JsfFlexQdoxInspector extends _JsfFlexInspectorBase {
3636

3737
private final String[] _patternList;
3838

0 commit comments

Comments
 (0)