Skip to content

Commit

Permalink
Moving projects to Java Delight
Browse files Browse the repository at this point in the history
Autocommit Sun Jul 05 11:31:16 EST 2015
  • Loading branch information
mxro committed Jul 5, 2015
1 parent ef917dd commit 00e784a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/main/java/de/mxro/async/properties/PropertyNode.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package de.mxro.async.properties;

import de.mxro.fn.Success;
import de.mxro.promise.Promise;
import delight.async.callbacks.ValueCallback;
import delight.functional.Success;

/**
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

import de.mxro.async.properties.PropertyData;
import de.mxro.async.properties.PropertyFactory;
import de.mxro.async.properties.values.ObjectValue;
import de.mxro.async.properties.values.ExplicitInstanceOf;
import de.mxro.json.ToJSON;
import de.mxro.async.properties.values.ObjectValue;
import de.mxro.json.JSON;
import de.mxro.json.JSONObject;
import de.mxro.json.ToJSON;

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
import de.mxro.async.properties.PropertyOperation;
import de.mxro.concurrency.schedule.AccessThread;
import de.mxro.concurrency.schedule.Step;
import de.mxro.fn.Closure;
import de.mxro.fn.Success;
import de.mxro.promise.Promise;
import de.mxro.promise.helper.PromiseFactory;
import delight.async.AsyncCommon;
import delight.async.Operation;
import delight.async.callbacks.ValueCallback;
import delight.functional.Closure;
import delight.functional.Success;

public class SynchronizedPropertyNode implements PropertyNode {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
import de.mxro.async.properties.PropertyNode;
import de.mxro.async.properties.PropertyOperation;
import de.mxro.async.properties.values.ObjectValue;
import de.mxro.fn.Closure;
import de.mxro.fn.Success;
import de.mxro.promise.Promise;
import de.mxro.promise.PromisesCommon;
import delight.async.Operation;
import delight.async.callbacks.ValueCallback;
import delight.functional.Closure;
import delight.functional.Success;

/**
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import java.io.Serializable;

import de.mxro.async.properties.values.ObjectValue;
import de.mxro.async.properties.values.ExplicitInstanceOf;
import de.mxro.async.properties.values.ObjectValue;

public class ObjectValueData implements Serializable, ObjectValue {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package de.mxro.async.properties.tests;

import de.oehme.xtend.junit.JUnit;
import org.eclipse.xtext.xbase.lib.Procedures.Procedure0;
import org.hamcrest.Matcher;
import org.junit.Assert;
import org.junit.Test;
import org.junit.internal.ArrayComparisonFailure;

import de.oehme.xtend.junit.JUnit;

@JUnit
@SuppressWarnings("all")
public class TestSetValue {
Expand Down

0 comments on commit 00e784a

Please sign in to comment.