~ubuntu-branches/ubuntu/vivid/quantlib-swig/vivid

« back to all changes in this revision

Viewing changes to Java/org/quantlib/FixedRateBond.java

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2009-12-03 17:01:53 UTC
  • mfrom: (1.1.9 upstream) (2.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20091203170153-x5yrwybjsl2q11vw
* New upstream release

* debian/control: Updated Standards-Version: to current value

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ----------------------------------------------------------------------------
2
2
 * This file was automatically generated by SWIG (http://www.swig.org).
3
 
 * Version 1.3.36
 
3
 * Version 1.3.40
4
4
 *
5
5
 * Do not make changes to this file unless you know what you are doing--modify
6
6
 * the SWIG interface file instead.
25
25
  }
26
26
 
27
27
  public synchronized void delete() {
28
 
    if(swigCPtr != 0 && swigCMemOwn) {
29
 
      swigCMemOwn = false;
30
 
      QuantLibJNI.delete_FixedRateBond(swigCPtr);
 
28
    if (swigCPtr != 0) {
 
29
      if (swigCMemOwn) {
 
30
        swigCMemOwn = false;
 
31
        QuantLibJNI.delete_FixedRateBond(swigCPtr);
 
32
      }
 
33
      swigCPtr = 0;
31
34
    }
32
 
    swigCPtr = 0;
33
35
    super.delete();
34
36
  }
35
37
 
37
39
    this(QuantLibJNI.new_FixedRateBond(settlementDays, faceAmount, Schedule.getCPtr(schedule), schedule, DoubleVector.getCPtr(coupons), coupons, DayCounter.getCPtr(paymentDayCounter), paymentDayCounter, paymentConvention.swigValue(), redemption, Date.getCPtr(issueDate), issueDate), true);
38
40
  }
39
41
 
 
42
  public Frequency frequency() {
 
43
    return Frequency.swigToEnum(QuantLibJNI.FixedRateBond_frequency(swigCPtr, this));
 
44
  }
 
45
 
 
46
  public DayCounter dayCounter() {
 
47
    return new DayCounter(QuantLibJNI.FixedRateBond_dayCounter(swigCPtr, this), true);
 
48
  }
 
49
 
40
50
}