summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-22 12:23:28 +0200
committerNoel Grandin <noel@peralex.com>2014-09-22 14:28:35 +0200
commit04f43cd6a0159da29a0df4bf8e27387156f321e5 (patch)
treeaa323aaab3f91503006113217187f67fc523fe14 /wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java
parent3c6da8e49a96513eda73656f3f6212f980a74b51 (diff)
84059 - form wizard : files required could not be found
I've essentially unwound most the Java changes I made te wizards module in the last few months. I will revisit my changes at a later date and make them more carefully :-) Change-Id: I9221a825dc8de6edc96d6db07072aefcd1a37107
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java')
-rw-r--r--wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java b/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java
new file mode 100644
index 000000000000..2731e0ba513e
--- /dev/null
+++ b/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java
@@ -0,0 +1,24 @@
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+package com.sun.star.wizards.ui;
+
+public interface XCommandSelectionListener
+{
+ public void CommandSelected(String CommandName);
+}