Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titlePrzykład
@Hook
public class SubstitutionHookImpl
    extends SubstitutionHookAdapter
{
	@Override
	public boolean confirmCreateSubstitution( String userName, Substitution substitution )
	{
		//implementacja metody
		return true;
	}

    @Override
    public int getOrder()
    {
        return 0;
    }
}

...