Package org.xhtmlrenderer.util
Class Util
- java.lang.Object
-
- org.xhtmlrenderer.util.Util
-
- Direct Known Subclasses:
Uu
public class Util extends java.lang.Object
Description of the Class- Author:
- empty
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
center(javax.swing.JDialog frame)
Description of the Methodstatic void
center(javax.swing.JFrame frame)
Description of the Methodstatic java.lang.String
file_to_string(java.io.File file)
Description of the Methodstatic java.lang.String
file_to_string(java.lang.String filename)
Description of the Methodstatic java.lang.String
inputstream_to_string(java.io.InputStream in)
Description of the Methodstatic boolean
isNumber(java.lang.String str)
Gets the number attribute of the Util classstatic java.lang.String[]
list_to_strings(java.util.List l)
Description of the Methodvoid
print(java.lang.Object o)
Description of the Methodvoid
print_array(byte[] array)
Description of the Methodvoid
print_array(int[] array)
Description of the Methodvoid
print_array(int[][] array)
Description of the Methodvoid
print_array(java.lang.Object[] array)
Description of the Methodvoid
print_calendar(java.util.Calendar cal)
Description of the Methodvoid
print_date(java.util.Date date)
Description of the Methodvoid
print_hashtable(java.util.Hashtable h)
Description of the Methodvoid
print_vector(java.util.Vector v)
Description of the Methodvoid
println(java.lang.Object o)
Description of the Methodvoid
println(java.lang.Object o, boolean line)
Description of the Methodvoid
printUnixtime(long sec)
Description of the Methodstatic java.lang.String
replace(java.lang.String source, java.lang.String target, java.lang.String replacement)
Description of the Methodvoid
setOn(boolean on)
Sets the on attribute of the Util objectvoid
setPrintWriter(java.io.PrintWriter writer)
Sets the printWriter attribute of the Util objectstatic void
sleep(long msec)
Description of the Methodstatic java.lang.String
stack_to_string(java.lang.Exception e)
Description of the Methodstatic java.lang.String
stack_to_string(java.lang.Throwable e)
Description of the Methodstatic void
string_to_file(java.lang.String text, java.io.File file)
Description of the Methodstatic int
string_to_int(java.lang.String str)
Description of the Methodstatic java.util.List
to_list(java.lang.Object[] array)
Description of the Methodstatic java.util.List
toList(java.lang.Object[] array)
Description of the Methodstatic java.lang.String[]
vector_to_strings(java.util.Vector v)
Description of the Method
-
-
-
Method Detail
-
print
public void print(java.lang.Object o)
Description of the Method- Parameters:
o
- PARAM
-
println
public void println(java.lang.Object o)
Description of the Method- Parameters:
o
- PARAM
-
println
public void println(java.lang.Object o, boolean line)
Description of the Method- Parameters:
o
- PARAMline
- PARAM
-
print_vector
public void print_vector(java.util.Vector v)
Description of the Method- Parameters:
v
- PARAM
-
print_array
public void print_array(int[][] array)
Description of the Method- Parameters:
array
- PARAM
-
print_array
public void print_array(java.lang.Object[] array)
Description of the Method- Parameters:
array
- PARAM
-
print_array
public void print_array(int[] array)
Description of the Method- Parameters:
array
- PARAM
-
print_hashtable
public void print_hashtable(java.util.Hashtable h)
Description of the Method- Parameters:
h
- PARAM
-
print_array
public void print_array(byte[] array)
Description of the Method- Parameters:
array
- PARAM
-
print_date
public void print_date(java.util.Date date)
Description of the Method- Parameters:
date
- PARAM
-
print_calendar
public void print_calendar(java.util.Calendar cal)
Description of the Method- Parameters:
cal
- PARAM
-
printUnixtime
public void printUnixtime(long sec)
Description of the Method- Parameters:
sec
- PARAM
-
setOn
public void setOn(boolean on)
Sets the on attribute of the Util object- Parameters:
on
- The new on value
-
setPrintWriter
public void setPrintWriter(java.io.PrintWriter writer)
Sets the printWriter attribute of the Util object- Parameters:
writer
- The new printWriter value
-
file_to_string
public static java.lang.String file_to_string(java.lang.String filename) throws java.io.FileNotFoundException, java.io.IOException
Description of the Method- Parameters:
filename
- PARAM- Returns:
- Returns
- Throws:
java.io.FileNotFoundException
- Throwsjava.io.IOException
- Throws
-
string_to_file
public static void string_to_file(java.lang.String text, java.io.File file) throws java.io.IOException
Description of the Method- Parameters:
text
- PARAMfile
- PARAM- Throws:
java.io.IOException
- Throws
-
string_to_int
public static int string_to_int(java.lang.String str)
Description of the Method- Parameters:
str
- PARAM- Returns:
- Returns
-
stack_to_string
public static java.lang.String stack_to_string(java.lang.Exception e)
Description of the Method- Parameters:
e
- PARAM- Returns:
- Returns
-
stack_to_string
public static java.lang.String stack_to_string(java.lang.Throwable e)
Description of the Method- Parameters:
e
- PARAM- Returns:
- Returns
-
inputstream_to_string
public static java.lang.String inputstream_to_string(java.io.InputStream in) throws java.io.IOException
Description of the Method- Parameters:
in
- PARAM- Returns:
- Returns
- Throws:
java.io.IOException
- Throws
-
file_to_string
public static java.lang.String file_to_string(java.io.File file) throws java.io.FileNotFoundException, java.io.IOException
Description of the Method- Parameters:
file
- PARAM- Returns:
- Returns
- Throws:
java.io.FileNotFoundException
- Throwsjava.io.IOException
- Throws
-
replace
public static java.lang.String replace(java.lang.String source, java.lang.String target, java.lang.String replacement)
Description of the Method- Parameters:
source
- PARAMtarget
- PARAMreplacement
- PARAM- Returns:
- Returns
-
vector_to_strings
public static java.lang.String[] vector_to_strings(java.util.Vector v)
Description of the Method- Parameters:
v
- PARAM- Returns:
- Returns
-
list_to_strings
public static java.lang.String[] list_to_strings(java.util.List l)
Description of the Method- Parameters:
l
- PARAM- Returns:
- Returns
-
toList
public static java.util.List toList(java.lang.Object[] array)
Description of the Method- Parameters:
array
- PARAM- Returns:
- Returns
-
to_list
public static java.util.List to_list(java.lang.Object[] array)
Description of the Method- Parameters:
array
- PARAM- Returns:
- Returns
-
sleep
public static void sleep(long msec)
Description of the Method- Parameters:
msec
- PARAM
-
center
public static void center(javax.swing.JFrame frame)
Description of the Method- Parameters:
frame
- PARAM
-
center
public static void center(javax.swing.JDialog frame)
Description of the Method- Parameters:
frame
- PARAM
-
isNumber
public static boolean isNumber(java.lang.String str)
Gets the number attribute of the Util class- Parameters:
str
- PARAM- Returns:
- The number value
-
-