~ubuntu-branches/ubuntu/maverick/libjrosetta-java/maverick

« back to all changes in this revision

Viewing changes to src/com/artenum/rosetta/implementation/JSR270HistoryManager.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2008-04-29 20:33:03 UTC
  • Revision ID: james.westby@ubuntu.com-20080429203303-pgltuv68l79ktv8e
Tags: upstream-1.0.1
ImportĀ upstreamĀ versionĀ 1.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (c) Copyright: Artenum SARL, 24 rue Louis Blanc,
 
3
 *                75010, Paris, France 2007.
 
4
 *                http://www.artenum.com
 
5
 *
 
6
 * License:
 
7
 *
 
8
 *  This program is free software; you can redistribute it 
 
9
 *  and/or modify it under the terms of the Q Public License; 
 
10
 *  either version 1 of the License.
 
11
 * 
 
12
 *  This program is distributed in the hope that it will be
 
13
 *  useful, but WITHOUT ANY WARRANTY; without even the implied
 
14
 *  warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
 
15
 *  PURPOSE. See the Q Public License for more details.
 
16
 * 
 
17
 *  You should have received a copy of the Q Public License 
 
18
 *  License along with this program;
 
19
 *  if not, write to:
 
20
 *    Artenum SARL, 24 rue Louis Blanc,
 
21
 *    75010, PARIS, FRANCE, e-mail: contact@artenum.com
 
22
 */
 
23
package com.artenum.rosetta.implementation;
 
24
 
 
25
import com.artenum.rosetta.interfaces.core.HistoryManager;
 
26
 
 
27
/**
 
28
 * History Manager for JSR270 implementation
 
29
 * @author Vincent COUVERT
 
30
 */
 
31
public class JSR270HistoryManager implements HistoryManager{
 
32
 
 
33
        public void addEntry(String newEntry) {
 
34
                // TODO Auto-generated method stub
 
35
                
 
36
        }
 
37
 
 
38
        public void display() {
 
39
                // TODO Auto-generated method stub
 
40
                
 
41
        }
 
42
 
 
43
        public String getEntry(int entryIndex) {
 
44
                // TODO Auto-generated method stub
 
45
                return null;
 
46
        }
 
47
 
 
48
        public String getNextEntry(String beg) {
 
49
                // TODO Auto-generated method stub
 
50
                return null;
 
51
        }
 
52
 
 
53
        public String getPreviousEntry(String beg) {
 
54
                // TODO Auto-generated method stub
 
55
                return null;
 
56
        }
 
57
 
 
58
        public String getTmpEntry() {
 
59
                // TODO Auto-generated method stub
 
60
                return null;
 
61
        }
 
62
 
 
63
        public boolean isInHistory() {
 
64
                // TODO Auto-generated method stub
 
65
                return false;
 
66
        }
 
67
 
 
68
        public void load() {
 
69
                // TODO Auto-generated method stub
 
70
                
 
71
        }
 
72
 
 
73
        public void reset() {
 
74
                // TODO Auto-generated method stub
 
75
                
 
76
        }
 
77
 
 
78
        public void save() {
 
79
                // TODO Auto-generated method stub
 
80
                
 
81
        }
 
82
 
 
83
        public void setInHistory(boolean status) {
 
84
                // TODO Auto-generated method stub
 
85
                
 
86
        }
 
87
 
 
88
        public void setMaxEntryNumber(int numberOfEntries) {
 
89
                // TODO Auto-generated method stub
 
90
                
 
91
        }
 
92
 
 
93
        public void setTmpEntry(String currentCommandLine) {
 
94
                // TODO Auto-generated method stub
 
95
                
 
96
        }
 
97
 
 
98
}