renamed strange last name to start with O instead of �
This commit is contained in:
parent
f6b8fdc2a8
commit
58a2af680a
12 changed files with 24 additions and 24 deletions
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiMoteInterface.java,v 1.2 2008/10/28 12:05:30 fros4943 Exp $
|
||||
* $Id: ContikiMoteInterface.java,v 1.3 2009/02/25 14:46:25 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote;
|
||||
|
@ -40,7 +40,7 @@ package se.sics.cooja.contikimote;
|
|||
*
|
||||
* The method should return the names of all needed core interfaces.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public interface ContikiMoteInterface {
|
||||
/*public static String[] getCoreInterfaceDependencies();*/
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiBeeper.java,v 1.8 2008/12/04 14:03:42 joxe Exp $
|
||||
* $Id: ContikiBeeper.java,v 1.9 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -60,7 +60,7 @@ import se.sics.cooja.interfaces.PolledAfterActiveTicks;
|
|||
*
|
||||
* This observable is changed and notifies observers when the mote beeps.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiBeeper extends Beeper implements ContikiMoteInterface, PolledAfterActiveTicks {
|
||||
private Mote mote = null;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiButton.java,v 1.11 2009/01/21 14:31:12 fros4943 Exp $
|
||||
* $Id: ContikiButton.java,v 1.12 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -59,7 +59,7 @@ import se.sics.cooja.interfaces.Button;
|
|||
*
|
||||
* This observable notifies when the button is pressed or released.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiButton extends Button implements ContikiMoteInterface {
|
||||
private SectionMoteMemory moteMem;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiCFS.java,v 1.8 2008/12/04 14:03:42 joxe Exp $
|
||||
* $Id: ContikiCFS.java,v 1.9 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -64,7 +64,7 @@ import se.sics.cooja.interfaces.PolledAfterActiveTicks;
|
|||
* <p>
|
||||
* This observable notifies when the filesystem is used (read/write).
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
@ClassDescription("Filesystem (CFS)")
|
||||
public class ContikiCFS extends MoteInterface implements ContikiMoteInterface, PolledAfterActiveTicks {
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiClock.java,v 1.7 2008/12/04 14:03:42 joxe Exp $
|
||||
* $Id: ContikiClock.java,v 1.8 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -56,7 +56,7 @@ import se.sics.cooja.interfaces.PolledBeforeActiveTicks;
|
|||
*
|
||||
* This observable never notifies.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiClock extends Clock implements ContikiMoteInterface, PolledBeforeActiveTicks {
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiIPAddress.java,v 1.4 2008/10/28 12:55:20 fros4943 Exp $
|
||||
* $Id: ContikiIPAddress.java,v 1.5 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -63,7 +63,7 @@ import se.sics.cooja.interfaces.IPAddress;
|
|||
*
|
||||
* This observable notifies when the IP address is set or altered.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiIPAddress extends IPAddress implements ContikiMoteInterface {
|
||||
private SectionMoteMemory moteMem = null;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiLED.java,v 1.6 2008/10/28 12:55:20 fros4943 Exp $
|
||||
* $Id: ContikiLED.java,v 1.7 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -59,7 +59,7 @@ import se.sics.cooja.interfaces.PolledAfterActiveTicks;
|
|||
*
|
||||
* This observable notifies when any LED changes.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiLED extends LED implements ContikiMoteInterface, PolledAfterActiveTicks {
|
||||
private static Logger logger = Logger.getLogger(ContikiLED.class);
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiLog.java,v 1.7 2008/10/28 12:55:20 fros4943 Exp $
|
||||
* $Id: ContikiLog.java,v 1.8 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -63,7 +63,7 @@ import se.sics.cooja.interfaces.PolledAfterActiveTicks;
|
|||
*
|
||||
* This observable notifies at new mote log output.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiLog extends Log implements ContikiMoteInterface, PolledAfterActiveTicks {
|
||||
private static Logger logger = Logger.getLogger(ContikiLog.class);
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiMoteID.java,v 1.5 2008/10/28 12:55:20 fros4943 Exp $
|
||||
* $Id: ContikiMoteID.java,v 1.6 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -58,7 +58,7 @@ import se.sics.cooja.interfaces.MoteID;
|
|||
*
|
||||
* This observable notifies observers when the mote ID is set or altered.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiMoteID extends MoteID implements ContikiMoteInterface {
|
||||
private SectionMoteMemory moteMem = null;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiPIR.java,v 1.5 2008/10/28 12:55:20 fros4943 Exp $
|
||||
* $Id: ContikiPIR.java,v 1.6 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -59,7 +59,7 @@ import se.sics.cooja.interfaces.PIR;
|
|||
*
|
||||
* This observable notifies if PIR triggers.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiPIR extends PIR implements ContikiMoteInterface {
|
||||
private static Logger logger = Logger.getLogger(ContikiPIR.class);
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiRadio.java,v 1.25 2009/02/24 15:09:07 fros4943 Exp $
|
||||
* $Id: ContikiRadio.java,v 1.26 2009/02/25 14:46:22 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -83,7 +83,7 @@ import se.sics.cooja.radiomediums.UDGM;
|
|||
* @see #getLastEvent()
|
||||
* @see UDGM
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
public class ContikiRadio extends Radio implements ContikiMoteInterface, PolledAfterActiveTicks {
|
||||
private Mote myMote;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ContikiVib.java,v 1.5 2008/10/28 12:55:20 fros4943 Exp $
|
||||
* $Id: ContikiVib.java,v 1.6 2009/02/25 14:46:24 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.contikimote.interfaces;
|
||||
|
@ -58,7 +58,7 @@ import se.sics.cooja.contikimote.ContikiMoteInterface;
|
|||
*
|
||||
* This observable never notifies.
|
||||
*
|
||||
* @author Fredrik Österlind
|
||||
* @author Fredrik Osterlind
|
||||
*/
|
||||
@ClassDescription("Vibration sensor")
|
||||
public class ContikiVib extends MoteInterface implements ContikiMoteInterface {
|
||||
|
|
Loading…
Reference in a new issue