Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/trapezium/factory/FactoryResponseAdapter.java


1   /*  FactoryResponseAdapter.java
2    *
3    */
4   
5   package com.trapezium.factory;
6   
7   /** Adapter class for FactoryResponseListener interface.
8   */
9   
10  public class FactoryResponseAdapter implements FactoryResponseListener {
11  
12    public void done( FactoryData result ) {
13    }
14  
15    public void update( FactoryData result ) {
16    }
17  
18    public void setNumberOfLines( int n ) {
19    }
20  
21    public void setPolygonCount( int n ) {
22    }
23  
24    public void setAction( String action ) {
25    }
26    
27    public void setText( String text ) {
28    }
29  
30    public void setFactoryData( FactoryData fd ) {
31    }
32    
33    public void setLinePercent( int n ) {
34    }
35  }