├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.ltk.core.refactoring.prefs ├── org.eclipse.m2e.core.prefs └── org.eclipse.wst.common.project.facet.core.xml ├── README.md ├── docs └── img │ ├── accept.png │ ├── exclamation.png │ └── screenshot.png ├── en.properties ├── input ├── omniclass13.txt └── omniclass14.txt ├── license.txt ├── nl.properties ├── plugin ├── icon.png ├── plugin.xml └── version.properties ├── pom.xml ├── src └── org │ └── bimserver │ └── ifcvalidator │ ├── AbstractIfcValidatorPlugin.java │ ├── BcfIfcValidatorPlugin.java │ ├── BcfInterface.java │ ├── CheckerContext.java │ ├── ExcelIfcValidatorPlugin.java │ ├── ExcelIssueInterface.java │ ├── IfcValidatorErrorCodes.java │ ├── NewChecksValidatorPlugin.java │ ├── Tester.java │ ├── ValidationException.java │ ├── ValidationReportIfcValidatorPlugin.java │ ├── ValidationReportPerCheckIfcValidatorPlugin.java │ └── checks │ ├── AllObjectsInBuildingStorey.java │ ├── AtLeastOneBuilding.java │ ├── AtLeastOneBuildingStorey.java │ ├── BuildingStoreyNamesAndZOrder.java │ ├── CarparkAccessability.java │ ├── CarparkAccessibilityConfiguration.java │ ├── CheckAreaUnit.java │ ├── CheckLengthUnit.java │ ├── CheckNlSFB.java │ ├── CheckVolumeUnit.java │ ├── CompletelyInBoundingBox.java │ ├── Concurrent.java │ ├── CorrectUseOfIfcEntitities.java │ ├── Cycle.java │ ├── CycleFinder.java │ ├── ExteriorWindowSizeSpaceRatio.java │ ├── FacadeMaterial.java │ ├── FindAllCyclesAlgo.java │ ├── FireratingDoorsSameAsWalls.java │ ├── FullModelCheckerRegistry.java │ ├── HasTrueNorthSet.java │ ├── IfcBuildingElementWrapper.java │ ├── IfcBuildingElementWrapperCombined.java │ ├── IfcSiteElevation.java │ ├── IfcSiteKadastaleAanduiding.java │ ├── IfcSiteLatitude.java │ ├── IfcSiteLongitude.java │ ├── IlsModelCheckerRegistry.java │ ├── LimitedModelCheckerRegistry.java │ ├── MaxBuildingHeightAboveGroundLevel.java │ ├── MaximumGroundArea.java │ ├── MaximumNumberOfStoreysAboveGround.java │ ├── MinimalDoorWidth.java │ ├── ModelCheck.java │ ├── ModelCheckerRegistry.java │ ├── NewChecksRegistry.java │ ├── OnlyOneIfcProject.java │ ├── OnlyOneIfcSite.java │ ├── Simplyfier.java │ ├── UnclassifiedSpaces.java │ ├── UnidentifiedSpaces.java │ └── WindowSpaceRatioConfiguration.java ├── templates ├── footer.html └── header.html ├── test └── org │ └── bimserver │ └── ifcvalidator │ └── tests │ ├── Test.java │ ├── TestCarparkAccessibility.java │ ├── TestCycles.java │ ├── TestExteriorWindowSizeSpaceRatio.java │ └── TestUnidentifiedSpaces.java └── testfiles ├── 09_d_fail_noSpace.ifc ├── 09_d_fail_smallSpace.ifc └── 09_d_pass.ifc /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/.settings/org.eclipse.ltk.core.refactoring.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/README.md -------------------------------------------------------------------------------- /docs/img/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/docs/img/accept.png -------------------------------------------------------------------------------- /docs/img/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/docs/img/exclamation.png -------------------------------------------------------------------------------- /docs/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/docs/img/screenshot.png -------------------------------------------------------------------------------- /en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/en.properties -------------------------------------------------------------------------------- /input/omniclass13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/input/omniclass13.txt -------------------------------------------------------------------------------- /input/omniclass14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/input/omniclass14.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/license.txt -------------------------------------------------------------------------------- /nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/nl.properties -------------------------------------------------------------------------------- /plugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/plugin/icon.png -------------------------------------------------------------------------------- /plugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/plugin/plugin.xml -------------------------------------------------------------------------------- /plugin/version.properties: -------------------------------------------------------------------------------- 1 | build.date=${timestamp} -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/pom.xml -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/AbstractIfcValidatorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/AbstractIfcValidatorPlugin.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/BcfIfcValidatorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/BcfIfcValidatorPlugin.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/BcfInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/BcfInterface.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/CheckerContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/CheckerContext.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/ExcelIfcValidatorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/ExcelIfcValidatorPlugin.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/ExcelIssueInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/ExcelIssueInterface.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/IfcValidatorErrorCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/IfcValidatorErrorCodes.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/NewChecksValidatorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/NewChecksValidatorPlugin.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/Tester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/Tester.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/ValidationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/ValidationException.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/ValidationReportIfcValidatorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/ValidationReportIfcValidatorPlugin.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/ValidationReportPerCheckIfcValidatorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/ValidationReportPerCheckIfcValidatorPlugin.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/AllObjectsInBuildingStorey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/AllObjectsInBuildingStorey.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/AtLeastOneBuilding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/AtLeastOneBuilding.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/AtLeastOneBuildingStorey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/AtLeastOneBuildingStorey.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/BuildingStoreyNamesAndZOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/BuildingStoreyNamesAndZOrder.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CarparkAccessability.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CarparkAccessability.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CarparkAccessibilityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CarparkAccessibilityConfiguration.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CheckAreaUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CheckAreaUnit.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CheckLengthUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CheckLengthUnit.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CheckNlSFB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CheckNlSFB.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CheckVolumeUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CheckVolumeUnit.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CompletelyInBoundingBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CompletelyInBoundingBox.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/Concurrent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/Concurrent.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CorrectUseOfIfcEntitities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CorrectUseOfIfcEntitities.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/Cycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/Cycle.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/CycleFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/CycleFinder.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/ExteriorWindowSizeSpaceRatio.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/ExteriorWindowSizeSpaceRatio.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/FacadeMaterial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/FacadeMaterial.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/FindAllCyclesAlgo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/FindAllCyclesAlgo.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/FireratingDoorsSameAsWalls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/FireratingDoorsSameAsWalls.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/FullModelCheckerRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/FullModelCheckerRegistry.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/HasTrueNorthSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/HasTrueNorthSet.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/IfcBuildingElementWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/IfcBuildingElementWrapper.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/IfcBuildingElementWrapperCombined.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/IfcBuildingElementWrapperCombined.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/IfcSiteElevation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/IfcSiteElevation.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/IfcSiteKadastaleAanduiding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/IfcSiteKadastaleAanduiding.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/IfcSiteLatitude.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/IfcSiteLatitude.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/IfcSiteLongitude.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/IfcSiteLongitude.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/IlsModelCheckerRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/IlsModelCheckerRegistry.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/LimitedModelCheckerRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/LimitedModelCheckerRegistry.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/MaxBuildingHeightAboveGroundLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/MaxBuildingHeightAboveGroundLevel.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/MaximumGroundArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/MaximumGroundArea.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/MaximumNumberOfStoreysAboveGround.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/MaximumNumberOfStoreysAboveGround.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/MinimalDoorWidth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/MinimalDoorWidth.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/ModelCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/ModelCheck.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/ModelCheckerRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/ModelCheckerRegistry.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/NewChecksRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/NewChecksRegistry.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/OnlyOneIfcProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/OnlyOneIfcProject.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/OnlyOneIfcSite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/OnlyOneIfcSite.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/Simplyfier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/Simplyfier.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/UnclassifiedSpaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/UnclassifiedSpaces.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/UnidentifiedSpaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/UnidentifiedSpaces.java -------------------------------------------------------------------------------- /src/org/bimserver/ifcvalidator/checks/WindowSpaceRatioConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/src/org/bimserver/ifcvalidator/checks/WindowSpaceRatioConfiguration.java -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/templates/header.html -------------------------------------------------------------------------------- /test/org/bimserver/ifcvalidator/tests/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/test/org/bimserver/ifcvalidator/tests/Test.java -------------------------------------------------------------------------------- /test/org/bimserver/ifcvalidator/tests/TestCarparkAccessibility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/test/org/bimserver/ifcvalidator/tests/TestCarparkAccessibility.java -------------------------------------------------------------------------------- /test/org/bimserver/ifcvalidator/tests/TestCycles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/test/org/bimserver/ifcvalidator/tests/TestCycles.java -------------------------------------------------------------------------------- /test/org/bimserver/ifcvalidator/tests/TestExteriorWindowSizeSpaceRatio.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/test/org/bimserver/ifcvalidator/tests/TestExteriorWindowSizeSpaceRatio.java -------------------------------------------------------------------------------- /test/org/bimserver/ifcvalidator/tests/TestUnidentifiedSpaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/test/org/bimserver/ifcvalidator/tests/TestUnidentifiedSpaces.java -------------------------------------------------------------------------------- /testfiles/09_d_fail_noSpace.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/testfiles/09_d_fail_noSpace.ifc -------------------------------------------------------------------------------- /testfiles/09_d_fail_smallSpace.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/testfiles/09_d_fail_smallSpace.ifc -------------------------------------------------------------------------------- /testfiles/09_d_pass.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceBIM/IfcValidator/HEAD/testfiles/09_d_pass.ifc --------------------------------------------------------------------------------