Examples of makeReadOnly()


Examples of org.jfree.layouting.util.AttributeMap.makeReadOnly()

  protected AttributeMap computeAttributes(final FlowController fc, final Element element, final ReportTarget target)
      throws DataSourceException
  {
    final AttributeMap map = new AttributeMap( super.computeAttributes(fc, element, target) );
    map.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, "iteration-count", new Integer(getIterationCount()));
    map.makeReadOnly();
    return map;
  }

}
View Full Code Here

Examples of org.nfctools.mf.mad.Application.makeReadOnly()

    assertFormatted();
    assertWritable();
    try {
      Application application = getApplication();
      application.getApplicationDirectory().makeReadOnly();
      application.makeReadOnly(new KeyValue(Key.B, writeKey));
      writable = false;
    }
    catch (IOException e) {
      throw new NfcException(e);
    }
View Full Code Here

Examples of org.onebusaway.gtfs.model.calendar.CalendarServiceData.makeReadOnly()

    CalendarServiceDataFactoryImpl factory = new CalendarServiceDataFactoryImpl();
    factory.setGtfsDao(_dao);
    factory.setExcludeFutureServiceDatesInDays(_excludeFutureServiceDatesInDays);
    CalendarServiceData data = factory.createData();
    data.makeReadOnly();

    try {

      ObjectSerializationLibrary.writeObject(
          _bundle.getCalendarServiceDataPath(), data);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.