[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

4.6

Is it possible to do JUnit on a command line?

Asked by kayvey in Java Programming Language, Ubuntu, Gentoo Linux

I have a set of classes and an associated set of test classes that Is successfully running on my laptop with eclipse.  

Now I need to run these on a single core processor, which I must access through ssh on a terminal command line.  Is there a javac option or a package to include or something to make this work on the command line?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
Note: LockFreeList.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
kayve@netlab1 ~/HW4/src $ javac -Xlint *.java
LockFreeList.java:51: warning: [unchecked] unchecked call to AtomicMarkableReference(V,boolean) as a member of the raw type java.util.concurrent.atomic.AtomicMarkableReference
        node.next = new AtomicMarkableReference(curr, false);
                    ^
LockFreeList.java:51: warning: [unchecked] unchecked conversion
found   : java.util.concurrent.atomic.AtomicMarkableReference
required: java.util.concurrent.atomic.AtomicMarkableReference<lists.LockFreeList<T>.Node>
        node.next = new AtomicMarkableReference(curr, false);
                    ^
2 warnings
kayve@netlab1 ~/HW4/src $ cd ../test
kayve@netlab1 ~/HW4/test $ ls
CoarseListTest.java  FineListTest.java  LazyListTest.java  LockFreeListTest.java  OptimisticListTest.java
kayve@netlab1 ~/HW4/test $ javac -Xlint *.java
CoarseListTest.java:9: package junit.framework does not exist
import junit.framework.*;
^
CoarseListTest.java:14: cannot find symbol
symbol: class TestCase
public class CoarseListTest extends TestCase {
                                    ^
CoarseListTest.java:19: cannot find symbol
symbol  : class CoarseList
location: class lists.CoarseListTest
  CoarseList<Integer> instance;
  ^
CoarseListTest.java:27: cannot find symbol
symbol  : class Test
location: class lists.CoarseListTest
  public static Test suite() {
                ^
FineListTest.java:9: package junit.framework does not exist
import junit.framework.*;
^
FineListTest.java:14: cannot find symbol
symbol: class TestCase
public class FineListTest extends TestCase {
                                  ^
FineListTest.java:19: cannot find symbol
symbol  : class FineList
location: class lists.FineListTest
  FineList<Integer> instance;
  ^
FineListTest.java:27: cannot find symbol
symbol  : class Test
location: class lists.FineListTest
  public static Test suite() {
                ^
LazyListTest.java:9: package junit.framework does not exist
import junit.framework.*;
^
LazyListTest.java:14: cannot find symbol
symbol: class TestCase
public class LazyListTest extends TestCase {
                                  ^
LazyListTest.java:19: cannot find symbol
symbol  : class LazyList
location: class lists.LazyListTest
  LazyList<Integer> instance;
  ^
LazyListTest.java:27: cannot find symbol
symbol  : class Test
location: class lists.LazyListTest
  public static Test suite() {
                ^
LockFreeListTest.java:9: package junit.framework does not exist
import junit.framework.*;
^
LockFreeListTest.java:14: cannot find symbol
symbol: class TestCase
public class LockFreeListTest extends TestCase {
                                      ^
LockFreeListTest.java:19: cannot find symbol
symbol  : class LockFreeList
location: class lists.LockFreeListTest
  LockFreeList<Integer> instance;
  ^
LockFreeListTest.java:27: cannot find symbol
symbol  : class Test
location: class lists.LockFreeListTest
  public static Test suite() {
                ^
OptimisticListTest.java:9: package junit.framework does not exist
import junit.framework.*;
^
OptimisticListTest.java:14: cannot find symbol
symbol: class TestCase
public class OptimisticListTest extends TestCase {
                                        ^
OptimisticListTest.java:19: cannot find symbol
symbol  : class OptimisticList
location: class lists.OptimisticListTest
  OptimisticList<Integer> instance;
  ^
OptimisticListTest.java:27: cannot find symbol
symbol  : class Test
location: class lists.OptimisticListTest
  public static Test suite() {
                ^
CoarseListTest.java:24: cannot find symbol
symbol  : class CoarseList
location: class lists.CoarseListTest
    instance = new CoarseList<Integer>();
                   ^
CoarseListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.CoarseListTest
    TestSuite suite = new TestSuite(CoarseListTest.class);
    ^
CoarseListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.CoarseListTest
    TestSuite suite = new TestSuite(CoarseListTest.class);
                          ^
CoarseListTest.java:44: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.CoarseListTest
        fail("bad contains: " + i );
        ^
CoarseListTest.java:49: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.CoarseListTest
        fail("bad remove: " + i );
        ^
CoarseListTest.java:70: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.CoarseListTest
        fail("bad contains: " + i );
        ^
CoarseListTest.java:75: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.CoarseListTest
        fail("bad remove: " + i );
        ^
CoarseListTest.java:91: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.CoarseListTest
        fail("bad contains: " + i );
        ^
CoarseListTest.java:145: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.CoarseListTest.RemoveThread
          fail("RemoveThread: duplicate remove: " + (value + i));
          ^
FineListTest.java:24: cannot find symbol
symbol  : class FineList
location: class lists.FineListTest
    instance = new FineList<Integer>();
                   ^
FineListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.FineListTest
    TestSuite suite = new TestSuite(FineListTest.class);
    ^
FineListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.FineListTest
    TestSuite suite = new TestSuite(FineListTest.class);
                          ^
FineListTest.java:44: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.FineListTest
        fail("bad contains: " + i );
        ^
FineListTest.java:49: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.FineListTest
        fail("bad remove: " + i );
        ^
FineListTest.java:70: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.FineListTest
        fail("bad contains: " + i );
        ^
FineListTest.java:75: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.FineListTest
        fail("bad remove: " + i );
        ^
FineListTest.java:91: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.FineListTest
        fail("bad contains: " + i );
        ^
FineListTest.java:145: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.FineListTest.RemoveThread
          fail("RemoveThread: duplicate remove: " + (value + i));
          ^
LazyListTest.java:24: cannot find symbol
symbol  : class LazyList
location: class lists.LazyListTest
    instance = new LazyList();
                   ^
LazyListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.LazyListTest
    TestSuite suite = new TestSuite(LazyListTest.class);
    ^
LazyListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.LazyListTest
    TestSuite suite = new TestSuite(LazyListTest.class);
                          ^
LazyListTest.java:44: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LazyListTest
        fail("bad contains: " + i );
        ^
LazyListTest.java:49: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LazyListTest
        fail("bad remove: " + i );
        ^
LazyListTest.java:69: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LazyListTest
        fail("bad contains: " + i );
        ^
LazyListTest.java:74: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LazyListTest
        fail("bad remove: " + i );
        ^
LazyListTest.java:89: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LazyListTest
        fail("bad contains: " + i );
        ^
LazyListTest.java:142: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LazyListTest.RemoveThread
          fail("RemoveThread: duplicate remove");
          ^
LockFreeListTest.java:24: cannot find symbol
symbol  : class LockFreeList
location: class lists.LockFreeListTest
    instance = new LockFreeList<Integer>();
                   ^
LockFreeListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.LockFreeListTest
    TestSuite suite = new TestSuite(LockFreeListTest.class);
    ^
LockFreeListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.LockFreeListTest
    TestSuite suite = new TestSuite(LockFreeListTest.class);
                          ^
LockFreeListTest.java:44: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LockFreeListTest
        fail("bad contains: " + i );
        ^
LockFreeListTest.java:49: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LockFreeListTest
        fail("bad remove: " + i );
        ^
LockFreeListTest.java:70: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LockFreeListTest
        fail("bad contains: " + i );
        ^
LockFreeListTest.java:75: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LockFreeListTest
        fail("bad remove: " + i );
        ^
LockFreeListTest.java:91: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LockFreeListTest
        fail("bad contains: " + i );
        ^
LockFreeListTest.java:145: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.LockFreeListTest.RemoveThread
          fail("RemoveThread: duplicate remove: " + (value + i));
          ^
OptimisticListTest.java:24: cannot find symbol
symbol  : class OptimisticList
location: class lists.OptimisticListTest
    instance = new OptimisticList<Integer>();
                   ^
OptimisticListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.OptimisticListTest
    TestSuite suite = new TestSuite(OptimisticListTest.class);
    ^
OptimisticListTest.java:28: cannot find symbol
symbol  : class TestSuite
location: class lists.OptimisticListTest
    TestSuite suite = new TestSuite(OptimisticListTest.class);
                          ^
OptimisticListTest.java:44: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.OptimisticListTest
        fail("bad contains: " + i );
        ^
OptimisticListTest.java:49: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.OptimisticListTest
        fail("bad remove: " + i );
        ^
OptimisticListTest.java:70: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.OptimisticListTest
        fail("bad contains: " + i );
        ^
OptimisticListTest.java:75: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.OptimisticListTest
        fail("bad remove: " + i );
        ^
OptimisticListTest.java:91: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.OptimisticListTest
        fail("bad contains: " + i );
        ^
OptimisticListTest.java:145: cannot find symbol
symbol  : method fail(java.lang.String)
location: class lists.OptimisticListTest.RemoveThread
          fail("RemoveThread: duplicate remove: " + (value + i));
          ^
65 errors
kayve@netlab1 ~/HW4/test $ pwd
/home/kayve/HW4/test
kayve@netlab1 ~/HW4/test $ 
[+][-]11/04/09 11:00 AM, ID: 25742628Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 12:31 PM, ID: 25743585Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 01:23 PM, ID: 25744096Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 01:28 PM, ID: 25744140Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 01:33 PM, ID: 25744180Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 01:34 PM, ID: 25744186Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 01:38 PM, ID: 25744232Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 01:41 PM, ID: 25744255Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 01:53 PM, ID: 25744362Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 02:07 PM, ID: 25744513Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 02:07 PM, ID: 25744515Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 02:08 PM, ID: 25744528Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 02:12 PM, ID: 25744571Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 02:19 PM, ID: 25744638Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 03:33 PM, ID: 25745340Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 05:49 PM, ID: 25746079Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 05:50 PM, ID: 25746087Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 05:54 PM, ID: 25746103Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 05:57 PM, ID: 25746118Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 05:59 PM, ID: 25746128Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 06:04 PM, ID: 25746146Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 06:08 PM, ID: 25746173Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 06:32 PM, ID: 25746271Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 06:34 PM, ID: 25746278Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 06:36 PM, ID: 25746283Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 06:39 PM, ID: 25746298Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 06:43 PM, ID: 25746314Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 06:50 PM, ID: 25746344Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Java Programming Language, Ubuntu, Gentoo Linux
Sign Up Now!
Solution Provided By: objects
Participating Experts: 1
Solution Grade: A
 
[+][-]11/04/09 06:59 PM, ID: 25746392Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 07:07 PM, ID: 25746430Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 07:14 PM, ID: 25746462Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 11:23 PM, ID: 25747361Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/05/09 04:54 PM, ID: 25755801Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625