You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
761 B
Java
29 lines
761 B
Java
4 months ago
|
/*
|
||
|
** ${CLASS:enoECMChangeOrder}
|
||
|
**
|
||
|
** Copyright (c) 1993-2020 Dassault Systemes. All Rights Reserved.
|
||
|
*/
|
||
|
|
||
|
import matrix.db.Context;
|
||
|
|
||
|
/**
|
||
|
* The <code>enoECMChangeOrder</code> class contains code for the "Change Order" business type.
|
||
|
*
|
||
|
* @version ECM R215 - # Copyright (c) 1992-2020 Dassault Systemes.
|
||
|
*/
|
||
|
public class enoECMChangeOrder_mxJPO extends enoECMChangeOrderBase_mxJPO
|
||
|
{
|
||
|
/**
|
||
|
* Constructor.
|
||
|
*
|
||
|
* @param context the eMatrix <code>Context</code> object.
|
||
|
* @param args holds no arguments.
|
||
|
* @throws Exception if the operation fails.
|
||
|
* @since ECM R215.
|
||
|
*/
|
||
|
|
||
|
public enoECMChangeOrder_mxJPO (Context context, String[] args) throws Exception {
|
||
|
super(context, args);
|
||
|
}
|
||
|
}
|