bck
Alejandro Acuña
2024-11-11 f1cb4443aede6d4657bdc3396c8914d3a9f4fa93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package art.servers.colorsserver.M.gui.diagrams;
 
import art.library.gui.flat.FlatPanel;
import art.library.gui.flat.FlatTableInput;
import art.servers.Shared;
import java.util.ArrayList;
import java.util.List;
 
 
 
public class PanelConfigurationGeneric extends FlatPanel
{
    private boolean editable = false;
    
    public void editable(boolean value)
    {
        this.editable = value;
    }
 
    public void selection()
    {
        grants();
    }
 
    public void deselection()
    {
    }
 
 
    public void grants()
    {
    }
    
    public void timer()
    {
    }    
    
    public boolean isEditable()
    {
        return editable;
    }
    
    
    
    
    
    
    public int getIntegerValue(FlatTableInput table, String group, String fieldName, String valueText, int minimum, int maximum) throws Exception
    {
        try
        {
            int value = Integer.parseInt((String)table.getValue(fieldName));
 
            if ((value < minimum) || (value > maximum))
            {
                String message = group;
                message = message + "\n" + Shared.getMessage("Field") + " "  + fieldName.toLowerCase();
                message = message + "\n" + Shared.getMessage("Valid range values") + " " + minimum + " .. " + maximum;
                throw new Exception(message);
            }
            
            return value;
        }
        catch (NumberFormatException e)
        {
            String message = group;
            message = message + "\n" + Shared.getMessage("Invalid number value in field") + " " + fieldName;
            throw new Exception(message);
        }
    }
    
    
    
    public int getIntegerValue(FlatTableInput table, String group, String fieldName, int minimum, int maximum) throws Exception
    {
        return getIntegerValue(table, group, fieldName, (String)table.getValue(fieldName), minimum, maximum);
    }    
 
    
 
    
    public int getIntegerValue(FlatTableInput table, String fieldName) throws Exception
    {
        try
        {
            int value = Integer.parseInt((String)table.getValue(fieldName));
            return value;
        }
        catch (NumberFormatException e)
        {
            throw new Exception(Shared.getMessage("Invalid number value in field") + " " + fieldName);
        }
    }    
    
    
    
    public String[] getTextsNumbers(int min, int max, boolean empty)
    {
        List<String> result = new ArrayList<String>();
 
        if (empty == true) result.add(" ");
        
        for (int i=min; i<=max; i++) 
        {
            result.add("" + i);
        }
        return result.toArray(new String[result.size()]);
    }
    
    
 
        
    public int[] format(String value) throws Exception
    {
        String[] values = value.trim().split(",");
        if ((values.length == 1)  && (values[0].length() == 0)) return new int[0];
        int[] result = new int[values.length];
        for (int i=0; i<values.length; i++) 
        {
            result[i] = Integer.parseInt(values[i].trim());
        }
        return result;
    }
        
        
 
    
    public String format(int[] lvalue)
    {
        String result = "";
        
        for (int i=0; i<lvalue.length; i++)
        {
            if (i == 0)
            {
               result = result + lvalue[i];
            }
            else
            {
               result = result + ", " + lvalue[i];
            }
        }
        
        return result;
    }
            
    
    
    
    public int[] format(FlatTableInput table, String group, String fieldName, int minimum, int maximum) throws Exception
    {
        String[] values = ((String)table.getValue(fieldName)).trim().split(",");
        if ((values.length == 1)  && (values[0].length() == 0)) return new int[0];
        int[] result = new int[values.length];
        for (int i=0; i<values.length; i++) 
        {
            result[i] = getIntegerValue(table, group, fieldName, values[i].trim(), minimum, maximum);
        }
        return result;
    }
        
        
    
    
    public int getInteger(String value)
    {
        try
        {
            return Integer.parseInt(value);
        }
        catch (Exception e)
        {
            return 0;
        }
    }
        
    
}