• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.ksoap2.serialization;
2 
3 /**
4  * Common inteface for classes which want to serialize attributes to outgoing soap message
5  *
6  * @author robocik
7  */
8 public interface HasAttributes {
getAttributeCount()9     int getAttributeCount();
10 
getAttributeInfo(int index, AttributeInfo info)11     void getAttributeInfo(int index, AttributeInfo info);
12 
getAttribute(int index, AttributeInfo info)13     void getAttribute(int index, AttributeInfo info);
14 
setAttribute(AttributeInfo info)15     void setAttribute(AttributeInfo info);
16 }
17