[BAEL-4381] Fix formatting
This commit is contained in:
parent
f7915d9f62
commit
29316a01f3
|
@ -13,44 +13,26 @@ public class Smurf {
|
|||
this.cartoon = cartoon;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the name
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param name the name to set
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the commic
|
||||
*/
|
||||
public boolean isComic() {
|
||||
return comic;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param commic the commic to set
|
||||
*/
|
||||
public void setCommic(boolean comic) {
|
||||
this.comic = comic;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the cartoon
|
||||
*/
|
||||
public boolean isCartoon() {
|
||||
return cartoon;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param cartoon the cartoon to set
|
||||
*/
|
||||
public void setCartoon(boolean cartoon) {
|
||||
this.cartoon = cartoon;
|
||||
}
|
||||
|
|
|
@ -14,43 +14,28 @@ public class SmurfDTO {
|
|||
this.cartoon = cartoon;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the name
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
/**
|
||||
* @param name the name to set
|
||||
*/
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
/**
|
||||
* @return the commic
|
||||
*/
|
||||
|
||||
public boolean isComic() {
|
||||
return comic;
|
||||
}
|
||||
/**
|
||||
* @param commic the commic to set
|
||||
*/
|
||||
|
||||
public void setCommic(boolean comic) {
|
||||
this.comic = comic;
|
||||
}
|
||||
/**
|
||||
* @return the cartoon
|
||||
*/
|
||||
|
||||
public boolean isCartoon() {
|
||||
return cartoon;
|
||||
}
|
||||
/**
|
||||
* @param cartoon the cartoon to set
|
||||
*/
|
||||
|
||||
public void setCartoon(boolean cartoon) {
|
||||
this.cartoon = cartoon;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue