View Javadoc
1   package com.puppycrawl.tools.checkstyle.xpath.xpathmapper;
2   
3   public interface InputXpathMapperInterface {
4       int sum(int a, int b);
5       void init(String someVariable, int age);
6       String getName();
7       void delete();
8   }