[mud4j-commit] SF.net SVN: mud4j: [143] trunk/mud4j-core/src/java/net/sf/mud4j/world/area
Status: Pre-Alpha
Brought to you by:
mpurland
From: <mpu...@us...> - 2007-10-02 15:43:23
|
Revision: 143 http://mud4j.svn.sourceforge.net/mud4j/?rev=143&view=rev Author: mpurland Date: 2007-10-02 08:43:21 -0700 (Tue, 02 Oct 2007) Log Message: ----------- Remove area. Removed Paths: ------------- trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java trunk/mud4j-core/src/java/net/sf/mud4j/world/area/Area.java trunk/mud4j-core/src/java/net/sf/mud4j/world/area/package.html Deleted: trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java =================================================================== --- trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java 2007-10-02 15:32:55 UTC (rev 142) +++ trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java 2007-10-02 15:43:21 UTC (rev 143) @@ -1,75 +0,0 @@ -/** - * Copyright 2006 Matthew Purland (m.p...@gm...) - * - * Licensed 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 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package net.sf.mud4j.world.area; - -import java.util.List; - -import net.sf.mud4j.character.Character; -import net.sf.mud4j.world.Room; -import net.sf.mud4j.world.item.Item; - -/** - * Abstract implementation of areas. - * - * @author Matthew Purland - */ -public class AbstractArea implements Area { - - // Name of the area - private String areaName; - - /** - * Constructs a new area with the specified area name. - * - * @param areaName Name of the area. - */ - public AbstractArea(String areaName) { - this.areaName = areaName; - } - - /** - * {@inheritDoc} - */ - public String getAreaName() { - return areaName; - } - - /** - * {@inheritDoc} - */ - public List<Character> getCharacters() { - // TODO Auto-generated method stub - return null; - } - - /** - * {@inheritDoc} - */ - public List<Item> getItems() { - // TODO Auto-generated method stub - return null; - } - - /** - * {@inheritDoc} - */ - public List<Room> getRooms() { - // TODO Auto-generated method stub - return null; - } - -} Deleted: trunk/mud4j-core/src/java/net/sf/mud4j/world/area/Area.java =================================================================== --- trunk/mud4j-core/src/java/net/sf/mud4j/world/area/Area.java 2007-10-02 15:32:55 UTC (rev 142) +++ trunk/mud4j-core/src/java/net/sf/mud4j/world/area/Area.java 2007-10-02 15:43:21 UTC (rev 143) @@ -1,60 +0,0 @@ -/** - * Copyright 2006 Matthew Purland (m.p...@gm...) - * - * Licensed 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 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package net.sf.mud4j.world.area; - -import java.util.List; - -import net.sf.mud4j.character.Character; -import net.sf.mud4j.world.Room; -import net.sf.mud4j.world.item.Item; - -/** - * Area interface for different types of areas. - * - * @author Matthew Purland - */ -public interface Area { - - /** - * Get name of the area. - * - * @return Get name of the area. - */ - public String getAreaName(); - - /** - * Retrieve list of rooms contained in the area. - * - * @return Returns a list of rooms in the area. - */ - public List<Room> getRooms(); - - /** - * Retrieve list of players contained in the area. - * - * @return Returns a list of characters in the area. - */ - public List<Character> getCharacters(); - - /** - * Retrieve list of items contained in area. - * - * @return Returns a list of items in the area. - */ - public List<Item> getItems(); - -} Deleted: trunk/mud4j-core/src/java/net/sf/mud4j/world/area/package.html =================================================================== --- trunk/mud4j-core/src/java/net/sf/mud4j/world/area/package.html 2007-10-02 15:32:55 UTC (rev 142) +++ trunk/mud4j-core/src/java/net/sf/mud4j/world/area/package.html 2007-10-02 15:43:21 UTC (rev 143) @@ -1,25 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> -<html> -<head> -<!-- - Copyright 2006 Matthew Purland (m.p...@gm...) - - Licensed 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 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> -</head> -<body> - <p> - Provides classes for areas and zones that can contain groups of locations. - </p> -</body> -</html> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |