|  |  | @ -2,6 +2,8 @@ package com.evolute.siprp.client.panels.apps.AnaliseAcidentesTrabalho.actual; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | import java.util.Vector; |  |  |  | import java.util.Vector; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | import com.evolute.siprp.client.panels.apps.AnaliseAcidentesTrabalho.AnaliseAcidentesTrabalhoService; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | import com.evolute.siprp.client.panels.apps.AnaliseAcidentesTrabalho.AnaliseAcidentesTrabalhoServiceAsync; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.evolute.siprp.client.panels.utils.navigation.PageNavigation; |  |  |  | import com.evolute.siprp.client.panels.utils.navigation.PageNavigation; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.evolute.siprp.client.vo.ActualTableRow; |  |  |  | import com.evolute.siprp.client.vo.ActualTableRow; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.google.gwt.core.client.GWT; |  |  |  | import com.google.gwt.core.client.GWT; | 
			
		
	
	
		
		
			
				
					|  |  | @ -15,15 +17,15 @@ public class ActualTable extends FlexTable | 
			
		
	
		
		
			
				
					
					|  |  |  | { |  |  |  | { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	private final DateTimeFormat D_F = DateTimeFormat.getFormat( "yyyy-MM-dd" ); |  |  |  | 	private final DateTimeFormat D_F = DateTimeFormat.getFormat( "yyyy-MM-dd" ); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 |  |  |  | 	 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	private ActualTableServiceAsync actualService; |  |  |  | 	private AnaliseAcidentesTrabalhoServiceAsync aatService; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 |  |  |  | 	 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public ActualTable() |  |  |  | 	public ActualTable() | 
			
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
		
		
			
				
					
					|  |  |  | 		super(); |  |  |  | 		super(); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		 |  |  |  | 		 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		this.actualService = ( ActualTableServiceAsync ) GWT.create( ActualTableService.class ); |  |  |  | 		this.aatService = ( AnaliseAcidentesTrabalhoServiceAsync ) GWT.create( AnaliseAcidentesTrabalhoService.class ); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		ServiceDefTarget serviceDef = ( ServiceDefTarget ) this.actualService; |  |  |  | 		ServiceDefTarget serviceDef = ( ServiceDefTarget ) this.aatService; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		serviceDef.setServiceEntryPoint( GWT.getModuleBaseURL() + "actualService" ); |  |  |  | 		serviceDef.setServiceEntryPoint( GWT.getModuleBaseURL() + "aatService" ); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		 |  |  |  | 		 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		 |  |  |  | 		 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		this.setText( 0, 0, "Data do acidente" ); |  |  |  | 		this.setText( 0, 0, "Data do acidente" ); | 
			
		
	
	
		
		
			
				
					|  |  | @ -44,7 +46,7 @@ public class ActualTable extends FlexTable | 
			
		
	
		
		
			
				
					
					|  |  |  | 		this.setText( 1, 0, "loading ..." ); |  |  |  | 		this.setText( 1, 0, "loading ..." ); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		this.getFlexCellFormatter().setColSpan( 1, 0, 6 ); |  |  |  | 		this.getFlexCellFormatter().setColSpan( 1, 0, 6 ); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		 |  |  |  | 		 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		this.actualService.getActualTableData( PageNavigation.getProvider().getUserLogged(), new AsyncCallback< Vector< ActualTableRow > >() { |  |  |  | 		this.aatService.getActualTableData( PageNavigation.getProvider().getUserLogged(), new AsyncCallback< Vector< ActualTableRow > >() { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			@Override |  |  |  | 			@Override | 
			
		
	
		
		
			
				
					
					|  |  |  | 			public void onFailure( Throwable caught )  |  |  |  | 			public void onFailure( Throwable caught )  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			{ |  |  |  | 			{ | 
			
		
	
	
		
		
			
				
					|  |  | 
 |