Issue #2122 Fix the build

Change-Id: I28e57ea57e1dc70beaf538586d27f2f83b5cdf2a

Former-commit-id: f06a8baf2d [formerly f75554f1f7 [formerly bf3b00be422d690aa9646462556607335ef85fc0]]
Former-commit-id: f75554f1f7
Former-commit-id: ce42bdead7
This commit is contained in:
Ron Anderson 2013-06-24 18:03:52 -05:00
parent 8aee8dc9b3
commit 74750fa37b

View file

@ -0,0 +1,50 @@
/**
* This software was developed and / or modified by Raytheon Company,
* pursuant to Contract DG133W-05-CQ-1067 with the US Government.
*
* U.S. EXPORT CONTROLLED TECHNICAL DATA
* This software product contains export-restricted data whose
* export/transfer/disclosure is restricted by U.S. law. Dissemination
* to non-U.S. persons whether in the United States or abroad requires
* an export license or other authorization.
*
* Contractor Name: Raytheon Company
* Contractor Address: 6825 Pine Street, Suite 340
* Mail Stop B8
* Omaha, NE 68106
* 402.291.0100
*
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
* further licensing information.
**/
package com.raytheon.uf.viz.core;
import com.raytheon.uf.viz.core.rsc.hdf5.ImageTile;
/**
* Interface for notification when a mesh calculation has completed
*
* <pre>
*
* SOFTWARE HISTORY
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Jun 19, 2010 mschenke Initial creation
*
* </pre>
*
* @author mschenke
* @version 1.0
*/
public interface IMeshCallback {
/**
* Notification of when the calculation for the mesh of the tile has been
* completed
*
* @param tile
*/
public void meshCalculated(ImageTile tile);
}