Subversion Repositories bacoAlunos

Rev

Rev 1704 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1704 Rev 1782
Line 691... Line 691...
691
    public void setMsn(1.5.0/docs/api/java/lang/String.html">String msn)
691
    public void setMsn(1.5.0/docs/api/java/lang/String.html">String msn)
692
    {
692
    {
693
        this.msn = msn;
693
        this.msn = msn;
694
    }
694
    }
695
 
695
 
696
    public boolean isOwnedBy(GenericUser u)
696
    public boolean checkIsOwnedBy(GenericUser u)
697
    {
697
    {
698
        return isOwnedBy(u,false);
698
        return checkIsOwnedBy(u, false);
699
    }
699
    }
700
 
700
 
701
    public boolean isOwnedBy(GenericUser u, boolean transaction)
701
    public boolean checkIsOwnedBy(GenericUser u, boolean transaction)
702
    {
702
    {
703
        return u.getId() == id;
703
        return u.getId() == id;
704
    }
704
    }
705
 
705
 
706
    public GenericUser getOwner()
706
    public GenericUser getOwner()