コード例 #1
0
  public long getLastModified(Object templateSource) {
    LiferayTemplateSource liferayTemplateSource = (LiferayTemplateSource) templateSource;

    return liferayTemplateSource.getLastModified();
  }
コード例 #2
0
  public Reader getReader(Object templateSource, String encoding) throws IOException {

    LiferayTemplateSource liferayTemplateSource = (LiferayTemplateSource) templateSource;

    return liferayTemplateSource.getReader(encoding);
  }
コード例 #3
0
  public void closeTemplateSource(Object templateSource) {
    LiferayTemplateSource liferayTemplateSource = (LiferayTemplateSource) templateSource;

    liferayTemplateSource.close();
  }