Projekt

Obecné

Profil

Stáhnout (694 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
package jdeserialize;
2
import java.io.*;
3
import java.util.*;
4

    
5
/**
6
 * Provides a skeleton content implementation.
7
 */
8
public class contentbase implements content {
9
    public int handle;
10
    public boolean isExceptionObject;
11
    protected contenttype type;
12
    public contentbase(contenttype type) {
13
        this.type = type;
14
    }
15
    public boolean isExceptionObject() {
16
        return isExceptionObject;
17
    }
18
    public void setIsExceptionObject(boolean value) {
19
        isExceptionObject = value;
20
    }
21
    public contenttype getType() {
22
        return type;
23
    }
24
    public int getHandle() {
25
        return this.handle;
26
    }
27
    public void validate() throws ValidityException {
28
    }
29
}
30

    
(12-12/20)