All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxma.hbmfilemerge.HbmFilePair Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.openxma.hbmfilemerge;

import java.io.File;

/**
 * holds a pair of {@link File} 
which represents a valid match in the * context of the hbm file merge */ class HbmFilePair { private File genHbm, fragmentHbm; public HbmFilePair(File genHbm, File fragmentHbm) { this.genHbm = genHbm; this.fragmentHbm = fragmentHbm; } public File getGenHbm() { return genHbm; } public File getFragmentHbm() { return fragmentHbm; } public static HbmFilePair valueOf(File genHbm, File fragmentHbm) { return new HbmFilePair(genHbm, fragmentHbm); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy