Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/properties/IProperties.java')
-rw-r--r--plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/properties/IProperties.java52
1 files changed, 26 insertions, 26 deletions
diff --git a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/properties/IProperties.java b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/properties/IProperties.java
index 15cba8cae6..a5ba97e8f2 100644
--- a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/properties/IProperties.java
+++ b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/properties/IProperties.java
@@ -1,26 +1,26 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Eike Stepper - initial API and implementation
- */
-package org.eclipse.net4j.util.properties;
-
-/**
- * Contains a list of {@link Property properties}.
- *
- * @author Eike Stepper
- * @since 3.2
- */
-public interface IProperties<RECEIVER> extends IPropertyProvider<RECEIVER>
-{
- public Class<RECEIVER> getReceiverType();
-
- public Property<RECEIVER> getProperty(String name);
-
- public void add(Property<RECEIVER> property);
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Eike Stepper - initial API and implementation
+ */
+package org.eclipse.net4j.util.properties;
+
+/**
+ * Contains a list of {@link Property properties}.
+ *
+ * @author Eike Stepper
+ * @since 3.2
+ */
+public interface IProperties<RECEIVER> extends IPropertyProvider<RECEIVER>
+{
+ public Class<RECEIVER> getReceiverType();
+
+ public Property<RECEIVER> getProperty(String name);
+
+ public void add(Property<RECEIVER> property);
+}

Back to the top