OpenKeyWord  Build_ID: 457, Datum: 01.02.2020 07:45:48
Dont repeat yourself. - Do it once and only once!
OKW_TestClipboard.java
1  /*
2  ==============================================================================
3  Author: Zoltán Hrabovszki <zh@openkeyword.de>
4 
5  Copyright © 2012 - 2019 IT-Beratung Hrabovszki
6  www.OpenKeyWord.de
7  ==============================================================================
8 
9  This file is part of OpenKeyWord.
10 
11  OpenKeyWord is free software: you can redistribute it and/or modify
12  it under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenKeyWord is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  GNU General Public License for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenKeyWord. If not, see <http://www.gnu.org/licenses/>.
23 
24  Diese Datei ist Teil von OpenKeyWord.
25 
26  OpenKeyWord ist Freie Software: Sie können es unter den Bedingungen
27  der GNU General Public License, wie von der Free Software Foundation,
28  Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
29  veröffentlichten Version, weiterverbreiten und/oder modifizieren.
30 
31  OpenKeyWord wird in der Hoffnung, dass es nützlich sein wird, aber
32  OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
33  Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
34  Siehe die GNU General Public License für weitere Details.
35 
36  Sie sollten eine Kopie der GNU General Public License zusammen mit
37  OpenKeyWord erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
38  */
39 
40 package okw;
41 
42 import java.util.ArrayList;
43 
44 public class OKW_TestClipboard {
45 
49 
51 
57  private static ArrayList<String> cvLs_LogValue = new ArrayList<String>();
58  private static ArrayList<String> cvLs_Value = new ArrayList<String>();
59 
60  private String cvs_Method;
61  private String cvs_ObjectName;
62 
63  private OKW_TestClipboard()
64  {
65  }
66 
67  public static OKW_TestClipboard getInstance()
68  {
69  return instanz;
70  }
71 
81  public ArrayList<String> getLogValue()
82  {
83  return cvLs_LogValue;
84  }
85 
86  public String getMethod()
87  {
88  return this.cvs_Method;
89  }
90 
91  public void setMethod( String value)
92  {
93  this.cvs_Method = value;
94  }
95 
96  public String getObjectName()
97  {
98  return this.cvs_ObjectName;
99  }
100 
101  public void setObjectName(String value)
102  {
103  this.cvs_ObjectName = value;
104  }
105 
106 
107  public ArrayList<String> getValue()
108  {
109  return cvLs_Value;
110  }
111 
112  public void setValue(ArrayList<String> value)
113  {
114  cvLs_Value = value;
115  }
116 
117 
121  public void Clear()
122  {
123  this.cvs_ObjectName = "";
124  this.cvs_Method = "";
125 
126  cvLs_Value.clear();
127  cvLs_LogValue.clear();
128  }
129 
130 
131  public void LogValueAdd(String fps_Value)
132  {
133  cvLs_LogValue.add(fps_Value);
134  }
135  }
okw.OKW_TestClipboard.getLogValue
ArrayList< String > getLogValue()
Getter/Setter der Eigenschaft LogValue.
Definition: OKW_TestClipboard.java:81
okw.OKW_TestClipboard.Clear
void Clear()
Resets all ClipBoard-Memmber to empty String = "" .
Definition: OKW_TestClipboard.java:121
okw.OKW_TestClipboard.instanz
static OKW_TestClipboard instanz
Singelton Object.
Definition: OKW_TestClipboard.java:50
okw.OKW_TestClipboard.cvLs_LogValue
static ArrayList< String > cvLs_LogValue
Diese Liste aus String-s ist für die Überprüfung des Log-ings gedacht.
Definition: OKW_TestClipboard.java:57
okw.OKW_TestClipboard
Definition: OKW_TestClipboard.java:44