|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ObjectTree.java | - | - | - | - |
|
1 |
package com.thoughtworks.xstream.objecttree;
|
|
2 |
|
|
3 |
public interface ObjectTree { |
|
4 |
|
|
5 |
void push(String fieldName);
|
|
6 |
|
|
7 |
void pop();
|
|
8 |
|
|
9 |
Object get(); |
|
10 |
|
|
11 |
Class type(); |
|
12 |
|
|
13 |
void set(Object value);
|
|
14 |
|
|
15 |
void create(Class type);
|
|
16 |
|
|
17 |
String[] fieldNames(); |
|
18 |
|
|
19 |
ObjectTree newStack(Object instance); |
|
20 |
|
|
21 |
ObjectTree newStack(Class type); |
|
22 |
} |
|
23 |
|
|