Skip to content

Commit

Permalink
Move store into its own package
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultz committed Aug 16, 2011
1 parent cd2f7db commit 8ec7b90
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/mesh/Mesh.as
@@ -1,6 +1,6 @@
package mesh
{
import mesh.model.Store;
import mesh.model.store.Store;
import mesh.services.Service;
import mesh.services.Services;

Expand Down
1 change: 1 addition & 0 deletions src/mesh/model/Entity.as
Expand Up @@ -17,6 +17,7 @@ package mesh.model
import mesh.services.Request;

import mx.events.PropertyChangeEvent;
import mesh.model.store.Store;

use namespace flash_proxy;

Expand Down
2 changes: 1 addition & 1 deletion src/mesh/model/query/Queries.as
Expand Up @@ -2,7 +2,7 @@ package mesh.model.query
{
import collections.HashMap;

import mesh.model.Store;
import mesh.model.store.Store;

/**
* A class that caches the results of each query in the store.
Expand Down
2 changes: 1 addition & 1 deletion src/mesh/model/query/ResultList.as
@@ -1,7 +1,7 @@
package mesh.model.query
{
import mesh.core.List;
import mesh.model.Store;
import mesh.model.store.Store;

/**
* The <code>ResultList</code> is a list of entities after an execution of a
Expand Down
2 changes: 1 addition & 1 deletion src/mesh/model/source/FixtureSource.as
Expand Up @@ -6,7 +6,7 @@ package mesh.model.source

import mesh.core.object.merge;
import mesh.model.Entity;
import mesh.model.Store;
import mesh.model.store.Store;

public class FixtureSource extends Source
{
Expand Down
2 changes: 1 addition & 1 deletion src/mesh/model/source/MultiSource.as
Expand Up @@ -5,7 +5,7 @@ package mesh.model.source

import mesh.core.reflection.reflect;
import mesh.model.Entity;
import mesh.model.Store;
import mesh.model.store.Store;

/**
* An entity source that maps a type of entity to its source.
Expand Down
2 changes: 1 addition & 1 deletion src/mesh/model/source/Source.as
Expand Up @@ -3,7 +3,7 @@ package mesh.model.source
import flash.errors.IllegalOperationError;

import mesh.model.Entity;
import mesh.model.Store;
import mesh.model.store.Store;
import mesh.model.query.Query;

/**
Expand Down
3 changes: 2 additions & 1 deletion src/mesh/model/Store.as → src/mesh/model/store/Store.as
@@ -1,4 +1,4 @@
package mesh.model
package mesh.model.store
{
import collections.HashSet;

Expand All @@ -12,6 +12,7 @@ package mesh.model
import mesh.model.source.Source;

import mx.events.PropertyChangeEvent;
import mesh.model.Entity;

/**
* The store represents a repository for all <code>Entity</code>s in your application. The store
Expand Down

0 comments on commit 8ec7b90

Please sign in to comment.