Child: [r23] (diff)

Download this file

MetaContainer.java    33 lines (25 with data), 835 Bytes

 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
/**
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (http://triplecheck.de)
* Created: 2013-12-09T00:00:00Z
* LicenseName: NOASSERTION
* FileName: MetaContainer.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright (c) 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text> This class is used as container for the META refresh
* tag support inside JEditorPane </text>
*/
package GUI;
import definitions.is;
import java.util.ArrayList;
/**
*
* @author Nuno Brito, 9th of December 2013 in Darsmtadt, Germany
*/
public class MetaContainer {
public int delay = -1;
public String url = "",
scriptMethod = is.methodDefault;
public ArrayList<String[]> params = new ArrayList<String[]>();
}