summaryrefslogtreecommitdiffstats
path: root/bean/com/sun/star/beans/ContainerFactory.java
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-16 14:23:21 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-16 14:25:01 +0200
commitbe36698f60d459cc88b703a007e3bf4209842492 (patch)
tree3dd5da06a631870335cba2fc113a446cf9e98323 /bean/com/sun/star/beans/ContainerFactory.java
parentfdo#81357 no fallback for special codes without country (diff)
downloadcore-be36698f60d459cc88b703a007e3bf4209842492.tar.gz
core-be36698f60d459cc88b703a007e3bf4209842492.zip
Revert bean part of "java: remove dead methods"
...34bcf9b498bccb5c924f4cec850ff15d88df6f07; bean is a client API, not dead code. Change-Id: Iea17b6306152b9a4f2968bed550a44917803d9ec
Diffstat (limited to 'bean/com/sun/star/beans/ContainerFactory.java')
-rw-r--r--bean/com/sun/star/beans/ContainerFactory.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/bean/com/sun/star/beans/ContainerFactory.java b/bean/com/sun/star/beans/ContainerFactory.java
index 28e8d0daa191..e3c0c9d9d7e2 100644
--- a/bean/com/sun/star/beans/ContainerFactory.java
+++ b/bean/com/sun/star/beans/ContainerFactory.java
@@ -18,6 +18,8 @@
package com.sun.star.beans;
+import java.awt.Container;
+
/**
* This interface reprecents an AWT container factory.
*
@@ -27,5 +29,10 @@ package com.sun.star.beans;
public interface ContainerFactory
{
-
+ /**
+ * Creates an AWT container.
+ *
+ * @return An AWT container.
+ */
+ Container createContainer();
}