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

psiprobe.tools.logging.jdk.JuliHandlerAccessor Maven / Gradle / Ivy

The newest version!
/*
 * Licensed under the GPL License. You may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 *
 * THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
 * WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE.
 */
package psiprobe.tools.logging.jdk;

import java.io.File;

import psiprobe.tools.Instruments;

/**
 * The Class JuliHandlerAccessor.
 */
public class JuliHandlerAccessor extends Jdk14HandlerAccessor {

  @Override
  public File getFile() {
    String dir = (String) Instruments.getField(getTarget(), "directory");
    String prefix = (String) Instruments.getField(getTarget(), "prefix");
    String suffix = (String) Instruments.getField(getTarget(), "suffix");
    String date = (String) Instruments.getField(getTarget(), "date");
    return dir != null && prefix != null && suffix != null && date != null
        ? new File(dir, prefix + date + suffix)
        : getStdoutFile();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy