summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCalendarSystemFactory.java
blob: b778631176d2ea783a92f294616e9678841c2a6f (plain)
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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import java.util.ArrayList;

/**

 Factory class for calendar types
		@author Carlos Moro <cfmoro@correo.uniovi.es>

		@short    Factory class for calendar types

*/
public class KCalendarSystemFactory implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected KCalendarSystemFactory(Class dummy){}

	public KCalendarSystemFactory() {
		newKCalendarSystemFactory();
	}
	private native void newKCalendarSystemFactory();
	/**	
		 Gets specific calendar type number of days in previous month for a
		 given date
			@param calType string identification of the specific calendar type
		 to be constructed
			@param locale Locale used for translations. Use the global locale when
		 0 is specified.
				@return a KCalendarSystem object
   
		@short    Gets specific calendar type number of days in previous month for a  given date
	*/
	public static native KCalendarSystem create(String calType, KLocale locale);
	public static native KCalendarSystem create(String calType);
	public static native KCalendarSystem create();
	/**	
		 Gets list of names of supported calendar systems
				@return An ArrayList object
   
		@short    Gets list of names of supported calendar systems
	*/
	public static native ArrayList calendarSystems();
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
}