Back to project page pink-ponies.
The source code is released under:
Software License Agreement (BSD License) Copyright (c) 2013, Pink Ponies Team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted prov...
If you think the Android project pink-ponies listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (c) 2013 Alexander Konovalov, Andrey Konovalov, Sergey Voronov, Vitaly Malyshev. All * rights reserved. Use of this source code is governed by a BSD-style license that can be found in * the LICENSE file./* ww w.j a va 2 s.com*/ */ package ru.pinkponies.server; import ru.pinkponies.protocol.Location; public final class Apple extends Entity { /** * The id of the quest to which apple relates. */ private final long questId; public Apple(final long id, final Location location, final long questId) { super(id, location); this.questId = questId; } @Override public String toString() { return "Apple [id=" + this.getId() + ", questId=" + this.questId + ", " + this.getLocation() + "]"; } }