diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-19 14:18:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-19 14:57:16 +0200 |
commit | 56ef5533fc1bce2134721ae64d4d6c18a3526a7a (patch) | |
tree | eafaa8b3c9c7fd4bbeb03fdb1be091f94c870953 /wizards | |
parent | 1e6f0b2d8b35f856637eedf91729e522fcc633e8 (diff) |
java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
Diffstat (limited to 'wizards')
5 files changed, 9 insertions, 9 deletions
diff --git a/wizards/com/sun/star/wizards/form/CallFormWizard.java b/wizards/com/sun/star/wizards/form/CallFormWizard.java index 94a141a6072a..1d729091e273 100644 --- a/wizards/com/sun/star/wizards/form/CallFormWizard.java +++ b/wizards/com/sun/star/wizards/form/CallFormWizard.java @@ -103,7 +103,7 @@ public class CallFormWizard /** This method returns an array of all supported service names. * @return Array of supported service names. */ - public java.lang.String[] getSupportedServiceNames() + public String[] getSupportedServiceNames() { String[] stringSupportedServiceNames = new String[1]; @@ -137,7 +137,7 @@ public class CallFormWizard /** Return the class name of the component. * @return Class name of the component. */ - public java.lang.String getImplementationName() + public String getImplementationName() { return (FormWizardImplementation.class.getName()); } diff --git a/wizards/com/sun/star/wizards/query/CallQueryWizard.java b/wizards/com/sun/star/wizards/query/CallQueryWizard.java index 853e23801a81..7a966bdcfcd7 100644 --- a/wizards/com/sun/star/wizards/query/CallQueryWizard.java +++ b/wizards/com/sun/star/wizards/query/CallQueryWizard.java @@ -108,7 +108,7 @@ public class CallQueryWizard /** This method returns an array of all supported service names. * @return Array of supported service names. */ - public java.lang.String[] getSupportedServiceNames() + public String[] getSupportedServiceNames() { String[] stringSupportedServiceNames = new String[1]; @@ -142,7 +142,7 @@ public class CallQueryWizard /** Return the class name of the component. * @return Class name of the component. */ - public java.lang.String getImplementationName() + public String getImplementationName() { return (QueryWizardImplementation.class.getName()); } diff --git a/wizards/com/sun/star/wizards/report/CallReportWizard.java b/wizards/com/sun/star/wizards/report/CallReportWizard.java index d6d531fd1a9a..d6e3881e3c78 100644 --- a/wizards/com/sun/star/wizards/report/CallReportWizard.java +++ b/wizards/com/sun/star/wizards/report/CallReportWizard.java @@ -107,7 +107,7 @@ public class CallReportWizard /** This method returns an array of all supported service names. * @return Array of supported service names. */ - public java.lang.String[] getSupportedServiceNames() + public String[] getSupportedServiceNames() { String[] stringSupportedServiceNames = new String[1]; @@ -141,7 +141,7 @@ public class CallReportWizard /** Return the class name of the component. * @return Class name of the component. */ - public java.lang.String getImplementationName() + public String getImplementationName() { return CallReportWizard.class.getName(); } diff --git a/wizards/com/sun/star/wizards/report/DBColumn.java b/wizards/com/sun/star/wizards/report/DBColumn.java index 7a5cfc358db1..7394ee9a151d 100644 --- a/wizards/com/sun/star/wizards/report/DBColumn.java +++ b/wizards/com/sun/star/wizards/report/DBColumn.java @@ -167,7 +167,7 @@ public class DBColumn { xRows = xTextTable.getRows(); } - catch (java.lang.NullPointerException e) + catch (NullPointerException e) { e.printStackTrace(); // TODO: handle the nullpointer right diff --git a/wizards/com/sun/star/wizards/table/CallTableWizard.java b/wizards/com/sun/star/wizards/table/CallTableWizard.java index 32a367fc0d63..09e99ff18690 100644 --- a/wizards/com/sun/star/wizards/table/CallTableWizard.java +++ b/wizards/com/sun/star/wizards/table/CallTableWizard.java @@ -107,7 +107,7 @@ public class CallTableWizard /** This method returns an array of all supported service names. * @return Array of supported service names. */ - public java.lang.String[] getSupportedServiceNames() + public String[] getSupportedServiceNames() { String[] stringSupportedServiceNames = new String[1]; @@ -141,7 +141,7 @@ public class CallTableWizard /** Return the class name of the component. * @return Class name of the component. */ - public java.lang.String getImplementationName() + public String getImplementationName() { return (TableWizardImplementation.class.getName()); } |