|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IncludeEntry.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | /* | |
| 2 | * IncludeEntry.java | |
| 3 | * | |
| 4 | * Created on 2. August 2004, 18:33 | |
| 5 | */ | |
| 6 | ||
| 7 | package org.jconfig.utils; | |
| 8 | ||
| 9 | /** | |
| 10 | * | |
| 11 | * @author mecky | |
| 12 | */ | |
| 13 | public class IncludeEntry { | |
| 14 | ||
| 15 | public static final int PROPERTIES = 1; | |
| 16 | ||
| 17 | private String name; | |
| 18 | private int type; | |
| 19 | ||
| 20 | 30 | public IncludeEntry(String name,int type) { |
| 21 | 30 | this.name = name; |
| 22 | 30 | this.type = type; |
| 23 | } | |
| 24 | ||
| 25 | 4 | public String getName() { |
| 26 | 4 | return name; |
| 27 | } | |
| 28 | ||
| 29 | 4 | public int getType() { |
| 30 | 4 | return type; |
| 31 | } | |
| 32 | ||
| 33 | } |
|
||||||||||