Skip to content

Commit

Permalink
Fix Author Tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
simono committed Jun 9, 2014
1 parent 1e77e3c commit a3367f3
Show file tree
Hide file tree
Showing 24 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import orp._
/**
* Example Queries for the DomainOrder.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object Order extends App {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import collection.mutable.ListBuffer
/**
* Native Implementation of the DomainOrder.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object native {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import _root_.orp.api._
/**
* ORP Implementation of the DomainOrder.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object orp {

Expand Down
2 changes: 1 addition & 1 deletion orp-examples/src/main/scala/orp/casestudies/office.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import orp.api.{plays, role, relationship}
/**
* Office Example.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
@relationship
object PlaceInventory {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.text.SimpleDateFormat
/**
* Example Queries for the PetClinic.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object Clinic extends App {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import java.util.Date
/**
* Native Implementation of the PetClinic.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object native {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import java.util.Date
/**
* ORP Implementation of the PetClinic.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object orp {

Expand Down
2 changes: 1 addition & 1 deletion orp-examples/src/main/scala/orp/examples/RunTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package orp.examples
/**
* Run tests.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object RunTests extends App {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import java.lang.reflect.Modifier
/**
* Some simple tests.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object test {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import orp.api._
/**
* Examples taken from the ORP paper.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
@relationship
object aggregation {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import java.lang.reflect.Modifier
/**
* Some simple tests.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object containerTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import orp.api._
/**
* A Relationship inside an object.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object container {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package orp.examples
/**
* Some simple tests.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object multipleAnnotationsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import orp.api._
/**
* Multiple plays annotations on a class.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
@relationship
object multrel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import orp.api._
/**
* Multiplicity.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object multiplicity {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import multiplicity._
/**
* Some simple tests.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object multiplicityTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import orp.api.RoleTrait
/**
* Examples taken from the ORP paper.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
abstract class ACaggregation {

Expand Down
2 changes: 1 addition & 1 deletion orp-framework/src/main/scala/orp/api.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import reflect.{ClassTag, classTag}
/**
* Annotations for the ORP framework.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
object api extends Enumeration {

Expand Down
2 changes: 1 addition & 1 deletion orp-plugin/src/main/scala/orp/plugin/OrpPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import tools.nsc.plugins.Plugin
/**
* A Scala Compiler {@link Plugin} for ORP.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
class OrpPlugin(val global: Global) extends Plugin {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.beans.Introspector
/**
* {@link PluginComponent} for ORP.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
private[components] trait OrpComponent extends PluginComponent with Transform with TreeDSL {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import orp.api.plays
/**
* An {@link OrpComponent} for {@link plays} transformations.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
class OrpComponentPlays(val global: Global) extends OrpComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import orp.api.playsFor
/**
* An {@link OrpComponent} for {@link playsFor} transformations.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
class OrpComponentPlaysFor(val global: Global) extends OrpComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import orp.api.{relationship, role, One}
/**
* An {@link OrpComponent} for {@link relationship} transformations.
*
* @author Simon Olofsson {@literal <simon@olofsson.de>}
* @author Simon Olofsson
*/
class OrpComponentRelationship(val global: Global) extends OrpComponent {

Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import sbtassembly.Plugin._
/**
* SBT {@link Build} definition.
*
* @author Simon Olofsson {@literal simon@olofsson.de}
* @author Simon Olofsson
*/
object OrpBuild extends Build {

Expand Down

0 comments on commit a3367f3

Please sign in to comment.